/* === Base Styles === */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #A5D6A7;
    --secondary-color: #FF5722;
    --accent-color: #2196F3;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-light: #F9F9F9;
    --bg-dark: #263238;
    --bg-accent: #E8F5E9;
    --white: #FFFFFF;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 15px 45px rgba(0, 0, 0, 0.15);
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-medium);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.secondary:hover {
    background-color: var(--primary-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    display: inline-block;
}

.section-header h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2:after {
    background-color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align h2:after {
    margin-left: 0;
}

/* === Header and Navigation === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 160px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-medium);
    transition: var(--transition);
}

.main-nav a.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.main-nav a.cta-button:after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transform: rotate(2deg);
}

.hero-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-large);
    border: 3px solid var(--primary-color);
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* === About Section === */
.about-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.about-image:after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: var(--radius-medium);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.about-text li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.about-text li:after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: bold;
}

/* === Benefits Section === */
.benefits-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/benefit.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.benefits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-medium);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* === Modules Section === */
.modules-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-light);
}

.modules-timeline {
    position: relative;
}

.modules-timeline:before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-light);
}

.module-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.module-item:last-child {
    margin-bottom: 0;
}

.module-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-right: 40px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.module-content {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.module-item:hover .module-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.module-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.module-details {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.module-details li {
    position: relative;
    padding-left: 25px;
}

.module-details li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);
    padding: 40px;
    display: flex;
    gap: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 3rem;
    opacity: 0.3;
    font-family: 'Georgia', serif;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.prev-button, .next-button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.prev-button:hover, .next-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* === Pricing Section === */
.pricing-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.pricing-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--radius-medium);
    padding: 40px;
    flex: 1;
    max-width: 350px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 1px solid #EEEEEE;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.pricing-card-header .price-description {
    color: var(--text-lighter);
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-features li svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-features .feature-disabled {
    color: var(--text-lighter);
}

.pricing-card-footer {
    text-align: center;
}

.pricing-guarantee {
    margin-top: 80px;
    display: flex;
    align-items: center;
    background-color: var(--bg-accent);
    border-radius: var(--radius-medium);
    padding: 30px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-text h3 {
    margin-bottom: 10px;
}

.guarantee-text p {
    margin-bottom: 0;
}

/* === FAQ Section === */
.faq-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background-color: var(--white);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.faq-item.active .faq-question {
    border-bottom-color: #EEEEEE;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-toggle .minus-icon {
    display: none;
}

.faq-item.active .faq-toggle .plus-icon {
    display: none;
}

.faq-item.active .faq-toggle .minus-icon {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

/* === Contact Section === */
.contact-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.contact-flex {
    display: flex;
    gap: 60px;
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--text-light);
}

.map-container {
    margin-bottom: 40px;
}

.map-container h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.google-map {
    border-radius: var(--radius-medium);
    overflow: hidden;
    height: 300px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--radius-medium);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDDDDD;
    border-radius: var(--radius-small);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
}

/* === Footer === */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex: 2;
}

.footer-menu h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-menu h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-menu ul li {
    margin-bottom: 15px;
}

.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-menu ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-newsletter {
    flex: 1;
    min-width: 300px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-newsletter h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 60px 15px 15px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-submit:hover {
    background-color: var(--primary-dark);
}

.newsletter-consent {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
}

.newsletter-consent input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.newsletter-consent label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.newsletter-consent a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.newsletter-consent a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === Responsive Styles === */
@media (max-width: 1200px) {
    :root {
        --section-spacing: 80px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-image:before {
        display: none;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    :root {
        --section-spacing: 70px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-dark);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav a.cta-button {
        display: inline-block;
        margin-top: 20px;
    }
    
    .hero .container,
    .about-content,
    .contact-flex {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .about-image:after {
        display: none;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
    
    .testimonial-text:before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-form-container {
        margin-top: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .button {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-timeline:before {
        left: 30px;
    }
    
    .module-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-right: 30px;
    }
    
    .module-details {
        grid-template-columns: 1fr;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text h3:after {
        margin: 15px auto 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-text ul {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}