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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1B5E20;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1B5E20;
}

.cta-button {
    display: inline-block;
    background: #FF6F00;
    color: white;
    text-decoration: none;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #E65100;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-full {
    text-align: center;
    grid-column: 1;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 50%, #81C784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 40px;
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 50%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.hero-details {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-description {
    font-size: 20px;
    color: #37474F;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%);
    color: white;
    text-decoration: none;
    border: none;
    padding: 18px 36px;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.hero-cta:hover {
    background: linear-gradient(135deg, #E65100 0%, #F57C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Key Features Section */
.key-features {
    padding: 40px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-infographic {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-infographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B5E20, #FF6F00);
}

.feature-infographic:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.infographic-icon {
    margin-bottom: 20px;
}

.icon-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B5E20, #4CAF50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.icon-calendar, .icon-clock {
    font-size: 48px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.infographic-content {
    margin-top: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
}

.section-title-inline {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Program Section */
.program-section {
    padding: 50px 0;
    background: white;
}

.program-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.program-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    text-decoration: none;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Requirements Section */
.requirements-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.requirement-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirement-card.positive h3 {
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirement-card.negative h3 {
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirement-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px 0;
}

.requirement-card.negative img {
    border-radius: 8px;
}

.requirement-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* How it Works */
.how-it-works {
    padding: 50px 0;
    background: white;
}

.steps-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(27, 94, 32, 0.1);
    transition: all 0.3s ease;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item:hover {
    transform: translateX(10px);
    background: rgba(27, 94, 32, 0.02);
    border-radius: 10px;
    padding: 25px 15px;
}

.step-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F3F0;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(27, 94, 32, 0.1);
}

.step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.steps-cta {
    text-align: center;
    margin-top: 50px;
}

.steps-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-button:hover {
    background: linear-gradient(135deg, #E65100 0%, #F57C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
}

/* Sign me in Section */
.signup-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.signup-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.signup-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1B5E20, #FF6F00);
}

.signup-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.signup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.signup-features li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #37474F;
}

.signup-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 20px;
}

.signup-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-button:hover {
    background: linear-gradient(135deg, #E65100 0%, #F57C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
}

.guarantee-text {
    font-size: 16px;
    color: #37474F;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    line-height: 1.6;
}

.guarantee-text strong {
    color: #1B5E20;
    font-weight: 700;
}

.not-included-box {
    margin-top: 30px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
}

.not-included-title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.not-included-text {
    font-size: 16px;
    color: #888;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Terms & Guarantee Section */
.terms-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.terms-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.terms-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.guarantee-info {
    margin-top: 20px;
    font-size: 17px;
    color: #37474F;
    line-height: 1.6;
}

.guarantee-info strong {
    color: #1B5E20;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(27, 94, 32, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 111, 0, 0.05) 0%, transparent 50%);
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 30px auto 0;
}

.experience-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1B5E20, #FF6F00);
    border-radius: 0 0 4px 4px;
}

.experience-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #37474F;
}

.experience-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.experience-cta:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

/* About Section */
.about-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-quote {
    font-size: 22px;
    font-style: italic;
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(27, 94, 32, 0.1);
}

.elegant-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.elegant-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.elegant-cta:hover::before {
    left: 100%;
}

.elegant-cta:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 50%, #66BB6A 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(27, 94, 32, 0.35);
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-container {
    position: relative;
    margin-top: 40px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: rgba(27, 94, 32, 0.1);
    font-weight: 700;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(27, 94, 32, 0.1);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Final CTA Section */
.final-cta-section {
    padding: 50px 0;
    background: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFC107;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #388E3C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.contact-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Status Messages */
.form-status {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(44, 85, 48, 0.05) 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
    flex: 1;
    margin-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(248, 249, 250, 0.5);
}

.faq-answer.active {
    padding: 20px 30px 30px 30px;
    max-height: 300px;
}

.faq-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .program-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .step-item:hover {
        transform: none;
        padding: 20px 10px;
    }
    
    .step-icon {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .steps-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .experience-card p {
        font-size: 16px;
    }
    
    .experience-cta {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .elegant-cta {
        font-size: 16px;
        padding: 18px 35px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-infographic {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .icon-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .icon-calendar, .icon-clock {
        font-size: 40px;
    }
    
    .signup-card {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .signup-title {
        font-size: 28px;
    }
    
    .signup-features li {
        font-size: 16px;
    }
    
    .signup-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .guarantee-text {
        font-size: 14px;
        padding: 15px;
    }
    
    .not-included-box {
        padding: 15px;
    }
    
    .not-included-title {
        font-size: 16px;
    }
    
    .not-included-text {
        font-size: 14px;
    }
    
    .terms-text {
        font-size: 14px;
    }
    
    .guarantee-info {
        font-size: 15px;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .program-card,
    .requirement-card {
        padding: 30px;
    }
    
    .experience-card {
        padding: 30px 20px;
    }
    
    .experience-card p {
        font-size: 16px;
    }
    
    .experience-cta {
        font-size: 15px;
        padding: 12px 24px;
    }
}