*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2933;
    background-color: #f5f7fb;
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.narrow {
    max-width: 720px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 251, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e4f0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.logo img {
    width: 32px;
    height: 32px;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a.active {
    border-bottom-color: #0d9488;
    color: #111827;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #111827;
    border-radius: 999px;
    transition: transform 0.2s ease;
}

/* Hero */
.hero {
    padding: 3.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0b1120;
    font-weight: 700;
}

.hero-text p {
    font-size: 1rem;
    color: #4b5563;
}

.hero-actions {
    margin: 1.5rem 0 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-alt {
    background-color: #e6edf7;
}

.section-accent {
    background: linear-gradient(135deg, #0f766e 0%, #0ea5e9 100%);
    color: #ecfeff;
}

.section-soft {
    background: #f1f5f9;
}

.section-about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0 3rem;
}

.section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.section-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.section-header p {
    margin: 0;
    color: #4b5563;
}

.section-accent .section-header p {
    color: #dbeafe;
}

/* Lead text */
.lead {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
}

/* About Hero */
.about-hero-content {
    max-width: 720px;
}

.about-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.grid-4-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

/* About Blocks */
.about-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-block p {
    color: #4b5563;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e 0%, #0ea5e9 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.team-role {
    color: #0f766e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-card p:last-child {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.approach-item {
    padding: 1.25rem;
}

.approach-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.approach-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.approach-item p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.75rem;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card p {
    color: #4b5563;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.service-features li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #4b5563;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: bold;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Services Extra */
.services-extra {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.services-extra h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.extra-service h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #0f766e;
}

.extra-service p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border-color: #0f766e;
    box-shadow: 0 12px 35px rgba(15, 118, 110, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f766e;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1.2;
}

.price-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #4b5563;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Program Extra */
.program-extra {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #0f766e0d;
    border: 1px solid #0f766e30;
}

/* Steps */
.step-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0f766e;
    color: #ecfeff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-card p {
    margin: 0;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Lists */
.list-check {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.95rem;
    color: #0f766e;
    font-weight: bold;
}

/* About */
.about-highlight {
    padding: 1rem 1.25rem;
    border-radius: 0.9rem;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
}

/* FAQ */
.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.faq-item a {
    color: #0f766e;
}

/* CTA */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0;
}

.cta-content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
}

.cta-content p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: #0f766e;
    color: #ecfeff;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #115e59;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.45);
}

.btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border-color: #d1d5db;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-outline {
    background: transparent;
    color: #0f766e;
    border-color: #0f766e;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #0f766e;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #0f766e;
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover,
.btn-white:focus {
    background: #f0fdfa;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Contact form */
.contact-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.contact-form .form-field {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0f766e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-field-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-field-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-field-checkbox label {
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-field-checkbox a {
    color: #0f766e;
    text-decoration: underline;
}

/* Submit button */
.form-btn {
    background-color: #0f766e;
    padding: 0.9rem 1.5rem;
    width: 100%;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.3);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.form-btn:hover,
.form-btn:focus {
    background-color: #115e59;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.4);
    transform: translateY(-2px);
}

.form-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
}

.form-hint-bottom {
    font-size: 0.8rem;
    color: #e0f2fe;
    margin-top: 0.75rem;
    text-align: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.contact-info-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #0f766e;
}

.contact-info-block p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.contact-info-block p:last-child {
    margin-bottom: 0;
}

.contact-info-block a {
    color: #0f766e;
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
.site-footer {
    background-color: #020617;
    color: #e5e7eb;
    padding-top: 2.5rem;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0 0 0.75rem;
}

.footer-contact {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-contact a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e5e7eb;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 0.5rem;
}

.footer-bottom-inner {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Simple pages */
.simple-page main .section {
    padding-top: 2.5rem;
}

.simple-page h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.simple-page h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.simple-page h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.simple-page p,
.simple-page li {
    color: #4b5563;
}

.simple-page ul {
    padding-left: 1.25rem;
}

.simple-page a {
    color: #0f766e;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        order: -1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-visual img {
        max-width: 320px;
    }
    
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .grid-2,
    .about-grid,
    .footer-inner,
    .grid-4-steps,
    .faq-list {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1;
    }
}

@media (max-width: 720px) {
    .header-inner {
        gap: 0.75rem;
    }
    
    .nav-list {
        position: absolute;
        right: 0;
        top: 110%;
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        border-radius: 0.75rem;
        padding: 1rem 1.25rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        min-width: 200px;
        display: none;
        border: 1px solid #e5e7eb;
    }
    
    .nav-list.nav-open {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-hint-bottom {
        color: #e5e7eb;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-inner {
        gap: 1.5rem;
    }
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    padding: 2rem 0;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
    color: #fff;
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thank-you-content a {
    color: #0f766e;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
}
