﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1A365D;
    --secondary-color: #2D7DD2;
    --accent-color: #F6AD55;
    --light-color: #F7FAFC;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #718096;
    --gradient-primary: linear-gradient(135deg, #1A365D 0%, #2D7DD2 100%);
    --gradient-secondary: linear-gradient(135deg, #2D7DD2 0%, #F6AD55 100%);
    --gradient-accent: linear-gradient(135deg, #F6AD55 0%, #ED8936 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(44, 95, 45, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(26, 54, 93, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(45, 125, 210, 0.03) 0%, transparent 25%);
    opacity: 1;
    pointer-events: none;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(44, 95, 45, 0.05);
}

.nav-links a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(45, 125, 210, 0.05) 100%);
    color: var(--text-dark);
    padding: 8rem 20px 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Professional coaching-inspired shapes */
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(26, 54, 93, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 500px 300px at 90% 30%, rgba(45, 125, 210, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 500px at 20% 80%, rgba(246, 173, 85, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 300px 400px at 80% 70%, rgba(26, 54, 93, 0.04) 0%, transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
    background: linear-gradient(135deg, #15304a 0%, #1e5a8a 100%);
}

/* Section Styling */
section {
    margin-bottom: 4rem;
}

/* Add professional coaching-inspired elements */
.section-decoration {
    position: relative;
    overflow: hidden;
}

.section-decoration::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.section-decoration::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

/* Professional coaching card styles */
.coaching-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.coaching-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
}

/* Gallery item styles */
.gallery-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--accent-color);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    border-left-color: var(--primary-color);
}

h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-reverse {
    direction: rtl;
}

.about-reverse > * {
    direction: ltr;
}

.about-image {
    width: 100%;    
    background-color: #ddd;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Grid / Advantages */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    border-left-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--gradient-secondary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 6px;
}

.service-icon > * {
    position: relative;
    z-index: 1;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(45, 125, 210, 0.3);
}

.service-card:hover .service-icon::before {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.04);
    border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-left-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(45, 125, 210, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--accent-color);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    border-left-color: var(--primary-color);
}

.article-image {
    width: 100%;
    height: 220px;
    background-color: #ddd;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.article-link:hover {
    color: var(--primary-color);
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, var(--light-color), #e8e8e8);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem auto;
}

.consultation h2 {
    color: var(--primary-color);
}

.consultation p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info {
    padding: 2rem;
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.08);
    transition: transform 0.3s;
    border-left: 4px solid var(--accent-color);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.12);
    border-left-color: var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(206, 40, 30, 0.1);
}

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

.map-container {
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    border-left-color: var(--primary-color);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
#cta-section {
    margin-top: 6rem;
}

.cta-section-content {
    background: var(--gradient-primary);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.2);
}

.cta-section-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section-content h2::after {
    display: none;
}

.cta-section-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(45, 125, 210, 0.05));
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(45, 125, 210, 0.1));
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Lists */
.content-list-small {
    list-style: none;
    padding-left: 0;
}

.content-list-small li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.content-list-small li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Success Page Styles */
.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 20px;
}

.success-section {
    text-align: center;
    max-width: 700px;
}

.success-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
}

.success-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.success-highlight {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.success-highlight p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.success-phone {
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), #15304a);
    color: var(--white);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cccccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--gradient-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--white);
    }
    
    .nav-links a::after {
        display: none;
    }

    .hero {
        padding: 4rem 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-reverse {
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 2rem 20px;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-section-content {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 1.5rem 10px;
    }

    .hero {
        padding: 3rem 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 32px;
    }

    .nav-links {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-image {
        height: 220px;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 1.2rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 10px;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .success-container {
        min-height: 60vh;
        padding: 2rem 10px;
    }

    .success-icon {
        font-size: 4rem;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }

    .success-title {
        font-size: 1.8rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .success-highlight {
        padding: 1.5rem;
    }

    .success-buttons {
        flex-direction: column;
    }

    .success-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
