* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common button styles */
.cta-btn {
    background: var(--primary-green);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-btn:hover {
    background: var(--primary-green-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.hero-cta {
    background: var(--secondary-yellow);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--secondary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 199, 68, 0.3);
}

/* Common animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 500px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        min-height: 450px;
        height: 55vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Button responsive adjustments */
    .hero-cta,
    .cta-primary,
    .cta-secondary,
    .service-btn,
    .course-btn {
        min-height: 44px; /* Touch-friendly minimum */
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Services CTA Section */
.services-cta {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 0l-15 15V15l15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.services-cta .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    padding: 40px 0;
}

.services-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.services-cta h2 .highlight-green {
    color: var(--primary-green);
}

.services-cta h2 .highlight-orange {
    color: var(--secondary-yellow);
}

.services-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: var(--text-muted);
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-primary {
    background: var(--secondary-yellow);
    color: var(--orange-text);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-primary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 95, 60, 0.3);
}

.cta-secondary {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 18px 20px;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    background: transparent;
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(15, 95, 60, 0.2);
}

.cta-circle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--secondary-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.cta-inner {
    text-align: center;
    color: white;
}

.cta-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange-text);
}

.cta-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
