/* Main Colors
Primary: #1976D2 (Blue)
Secondary: #00BFA5 (Teal)
Accent: #FF4081 (Pink)
Dark: #2C3E50 (Dark Blue)
Light: #F5F7FA (Light Gray)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F5F7FA;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.PTChandraSaktiUtamaLeasing-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.PTChandraSaktiUtamaLeasing-btn-primary {
    display: inline-block;
    background: linear-gradient(to right, #1976D2, #00BFA5);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.PTChandraSaktiUtamaLeasing-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.5);
    background: linear-gradient(to right, #00BFA5, #1976D2);
}

.PTChandraSaktiUtamaLeasing-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1976D2;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid #1976D2;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.PTChandraSaktiUtamaLeasing-btn-secondary:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateY(-3px);
}

.PTChandraSaktiUtamaLeasing-btn-calculate {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #1976D2, #00BFA5);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.PTChandraSaktiUtamaLeasing-btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.5);
    background: linear-gradient(to right, #00BFA5, #1976D2);
}

/* Navbar */
.PTChandraSaktiUtamaLeasing-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.PTChandraSaktiUtamaLeasing-navbar .PTChandraSaktiUtamaLeasing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.PTChandraSaktiUtamaLeasing-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1976D2;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.PTChandraSaktiUtamaLeasing-menu ul {
    display: flex;
    gap: 30px;
}

.PTChandraSaktiUtamaLeasing-menu a {
    color: #2C3E50;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.PTChandraSaktiUtamaLeasing-menu a:hover {
    color: #1976D2;
}

.PTChandraSaktiUtamaLeasing-menu a.active {
    color: #1976D2;
}

.PTChandraSaktiUtamaLeasing-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
}

.PTChandraSaktiUtamaLeasing-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.PTChandraSaktiUtamaLeasing-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1976D2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Banner Section */
.PTChandraSaktiUtamaLeasing-banner {
    height: 60vh;
    min-height: 400px;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.PTChandraSaktiUtamaLeasing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.PTChandraSaktiUtamaLeasing-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #F5F7FA, transparent);
    z-index: 2;
}

.PTChandraSaktiUtamaLeasing-banner-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.PTChandraSaktiUtamaLeasing-banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.PTChandraSaktiUtamaLeasing-banner-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1976D2, #00BFA5);
    border-radius: 2px;
}

.PTChandraSaktiUtamaLeasing-banner-content p {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.PTChandraSaktiUtamaLeasing-intro {
    padding: 100px 0 80px;
    text-align: center;
}

.PTChandraSaktiUtamaLeasing-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.PTChandraSaktiUtamaLeasing-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.PTChandraSaktiUtamaLeasing-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #1976D2, #00BFA5);
    border-radius: 2px;
}

.PTChandraSaktiUtamaLeasing-intro-content p {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Financing Options Section */
.PTChandraSaktiUtamaLeasing-financing-options {
    padding: 80px 0;
    background-color: white;
}

.PTChandraSaktiUtamaLeasing-options-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.PTChandraSaktiUtamaLeasing-options-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.PTChandraSaktiUtamaLeasing-options-header p {
    color: #5D6D7E;
    font-size: 16px;
}

/* Tabs */
.PTChandraSaktiUtamaLeasing-tabs {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.PTChandraSaktiUtamaLeasing-tab-headers {
    display: flex;
    background: #F5F7FA;
    border-bottom: 1px solid #eee;
}

.PTChandraSaktiUtamaLeasing-tab-header {
    flex: 1;
    padding: 20px 15px;
    text-align: center;
    font-weight: 500;
    color: #5D6D7E;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 15px;
}

.PTChandraSaktiUtamaLeasing-tab-header.active {
    color: #1976D2;
    border-bottom: 3px solid #1976D2;
    background: white;
}

.PTChandraSaktiUtamaLeasing-tab-content {
    display: none;
    padding: 40px;
}

.PTChandraSaktiUtamaLeasing-tab-content.active {
    display: block;
}

.PTChandraSaktiUtamaLeasing-tab-info {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.PTChandraSaktiUtamaLeasing-tab-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.PTChandraSaktiUtamaLeasing-tab-text p {
    color: #5D6D7E;
    line-height: 1.8;
    margin-bottom: 25px;
}

.PTChandraSaktiUtamaLeasing-benefits {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(0, 191, 165, 0.05));
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.PTChandraSaktiUtamaLeasing-benefits h4 {
    color: #2C3E50;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.PTChandraSaktiUtamaLeasing-benefits ul {
    padding-left: 20px;
}

.PTChandraSaktiUtamaLeasing-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #5D6D7E;
}

.PTChandraSaktiUtamaLeasing-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
}

.PTChandraSaktiUtamaLeasing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.PTChandraSaktiUtamaLeasing-feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.PTChandraSaktiUtamaLeasing-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.PTChandraSaktiUtamaLeasing-feature-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(0, 191, 165, 0.1));
    border-radius: 50%;
    padding: 15px;
}

.PTChandraSaktiUtamaLeasing-feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
}

.PTChandraSaktiUtamaLeasing-feature-item p {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.6;
}

.PTChandraSaktiUtamaLeasing-tab-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.PTChandraSaktiUtamaLeasing-tab-image img:hover {
    transform: scale(1.02);
}

/* How It Works Section */
.PTChandraSaktiUtamaLeasing-how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.03), rgba(0, 191, 165, 0.03));
}

.PTChandraSaktiUtamaLeasing-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.PTChandraSaktiUtamaLeasing-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.PTChandraSaktiUtamaLeasing-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    border-radius: 3px;
}

.PTChandraSaktiUtamaLeasing-section-header p {
    color: #5D6D7E;
    font-size: 16px;
}

.PTChandraSaktiUtamaLeasing-process {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.PTChandraSaktiUtamaLeasing-process-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: calc(20% - 24px);
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.PTChandraSaktiUtamaLeasing-process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.PTChandraSaktiUtamaLeasing-process-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #1976D2, #00BFA5);
    z-index: 1;
}

.PTChandraSaktiUtamaLeasing-process-item:last-child::after {
    display: none;
}

.PTChandraSaktiUtamaLeasing-process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(25, 118, 210, 0.3);
}

.PTChandraSaktiUtamaLeasing-process-icon span {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.PTChandraSaktiUtamaLeasing-process-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
}

.PTChandraSaktiUtamaLeasing-process-content p {
    color: #5D6D7E;
    font-size: 14px;
}

/* Calculator Section */
.PTChandraSaktiUtamaLeasing-calculator {
    padding: 100px 0;
    background: #fff;
}

.PTChandraSaktiUtamaLeasing-calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.PTChandraSaktiUtamaLeasing-calculator-content {
    padding: 60px;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.PTChandraSaktiUtamaLeasing-calculator-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.PTChandraSaktiUtamaLeasing-calculator-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.PTChandraSaktiUtamaLeasing-calculator-content .PTChandraSaktiUtamaLeasing-btn-primary {
    background: white;
    color: #1976D2;
    margin-top: 30px;
    align-self: flex-start;
}

.PTChandraSaktiUtamaLeasing-calculator-form {
    padding: 50px;
}

.PTChandraSaktiUtamaLeasing-form-group {
    margin-bottom: 20px;
}

.PTChandraSaktiUtamaLeasing-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
    margin-bottom: 10px;
}

.PTChandraSaktiUtamaLeasing-form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.PTChandraSaktiUtamaLeasing-form-group input:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
    outline: none;
}

.PTChandraSaktiUtamaLeasing-calculation-result {
    background: #F5F7FA;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.PTChandraSaktiUtamaLeasing-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.PTChandraSaktiUtamaLeasing-result-item:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.PTChandraSaktiUtamaLeasing-result-item span {
    color: #5D6D7E;
}

.PTChandraSaktiUtamaLeasing-result-item strong {
    color: #2C3E50;
}

.PTChandraSaktiUtamaLeasing-disclaimer {
    font-size: 12px;
    color: #5D6D7E;
    margin-top: 15px;
    font-style: italic;
}

/* Testimonials Section */
.PTChandraSaktiUtamaLeasing-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.03), rgba(0, 191, 165, 0.03));
}

.PTChandraSaktiUtamaLeasing-testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.PTChandraSaktiUtamaLeasing-testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.PTChandraSaktiUtamaLeasing-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.PTChandraSaktiUtamaLeasing-testimonial-quote {
    font-size: 16px;
    color: #5D6D7E;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
    flex-grow: 1;
}

.PTChandraSaktiUtamaLeasing-testimonial-quote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(25, 118, 210, 0.1);
    font-family: serif;
}

.PTChandraSaktiUtamaLeasing-testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.PTChandraSaktiUtamaLeasing-testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.PTChandraSaktiUtamaLeasing-testimonial-profile h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
}

.PTChandraSaktiUtamaLeasing-testimonial-profile p {
    font-size: 14px;
    color: #5D6D7E;
}

/* CTA Section */
.PTChandraSaktiUtamaLeasing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    color: white;
}

.PTChandraSaktiUtamaLeasing-cta .PTChandraSaktiUtamaLeasing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.PTChandraSaktiUtamaLeasing-cta-text {
    flex: 2;
    min-width: 300px;
}

.PTChandraSaktiUtamaLeasing-cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.PTChandraSaktiUtamaLeasing-cta-text p {
    font-size: 16px;
    opacity: 0.9;
}

.PTChandraSaktiUtamaLeasing-cta-buttons {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.PTChandraSaktiUtamaLeasing-cta .PTChandraSaktiUtamaLeasing-btn-primary {
    background: white;
    color: #1976D2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.PTChandraSaktiUtamaLeasing-cta .PTChandraSaktiUtamaLeasing-btn-secondary {
    color: white;
    border-color: white;
}

.PTChandraSaktiUtamaLeasing-cta .PTChandraSaktiUtamaLeasing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.PTChandraSaktiUtamaLeasing-footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 80px 0 30px;
}

.PTChandraSaktiUtamaLeasing-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.PTChandraSaktiUtamaLeasing-footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.PTChandraSaktiUtamaLeasing-footer-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.PTChandraSaktiUtamaLeasing-footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.PTChandraSaktiUtamaLeasing-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.PTChandraSaktiUtamaLeasing-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.PTChandraSaktiUtamaLeasing-footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.PTChandraSaktiUtamaLeasing-footer-social h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.PTChandraSaktiUtamaLeasing-social-icons {
    display: flex;
    gap: 15px;
}

.PTChandraSaktiUtamaLeasing-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.PTChandraSaktiUtamaLeasing-social-icon:hover {
    background: linear-gradient(135deg, #1976D2, #00BFA5);
    transform: translateY(-5px);
}

.PTChandraSaktiUtamaLeasing-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.PTChandraSaktiUtamaLeasing-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .PTChandraSaktiUtamaLeasing-tab-info {
        grid-template-columns: 1fr;
    }
    
    .PTChandraSaktiUtamaLeasing-tab-image {
        display: none;
    }
    
    .PTChandraSaktiUtamaLeasing-calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .PTChandraSaktiUtamaLeasing-calculator-content {
        padding: 40px;
    }
}

@media screen and (max-width: 992px) {
    .PTChandraSaktiUtamaLeasing-banner-content h1 {
        font-size: 42px;
    }
    
    .PTChandraSaktiUtamaLeasing-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .PTChandraSaktiUtamaLeasing-process-item {
        width: calc(33.333% - 20px);
    }
    
    .PTChandraSaktiUtamaLeasing-process-item:nth-child(3)::after {
        display: none;
    }
    
    .PTChandraSaktiUtamaLeasing-cta .PTChandraSaktiUtamaLeasing-container {
        flex-direction: column;
        text-align: center;
    }
    
    .PTChandraSaktiUtamaLeasing-cta-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .PTChandraSaktiUtamaLeasing-menu {
        display: none;
    }
    
    .PTChandraSaktiUtamaLeasing-menu-toggle {
        display: flex;
    }
    
    .PTChandraSaktiUtamaLeasing-banner-content h1 {
        font-size: 36px;
    }
    
    .PTChandraSaktiUtamaLeasing-tab-headers {
        flex-direction: column;
    }
    
    .PTChandraSaktiUtamaLeasing-process-item {
        width: calc(50% - 15px);
    }
    
    .PTChandraSaktiUtamaLeasing-process-item:nth-child(2)::after {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .PTChandraSaktiUtamaLeasing-banner-content h1 {
        font-size: 30px;
    }
    
    .PTChandraSaktiUtamaLeasing-banner-content p,
    .PTChandraSaktiUtamaLeasing-intro-content p {
        font-size: 14px;
    }
    
    .PTChandraSaktiUtamaLeasing-process-item {
        width: 100%;
    }
    
    .PTChandraSaktiUtamaLeasing-process-item::after {
        display: none;
    }
    
    .PTChandraSaktiUtamaLeasing-intro-content h2,
    .PTChandraSaktiUtamaLeasing-options-header h2,
    .PTChandraSaktiUtamaLeasing-section-header h2,
    .PTChandraSaktiUtamaLeasing-calculator-content h2,
    .PTChandraSaktiUtamaLeasing-cta-text h2 {
        font-size: 28px;
    }
    
    .PTChandraSaktiUtamaLeasing-tab-content {
        padding: 20px;
    }
} 