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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90a4;
    --accent-color: #d69e2e;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --background-light: #f7fafc;
    --background-medium: #edf2f7;
    --white: #ffffff;
    --success: #2ecc71;
    --border-color: #e2e8f0;
    --overlay: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #27ae60;
}

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.main-nav {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-medium) 100%);
}

.hero-content {
    max-width: 700px;
    margin-bottom: 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 900px;
}

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

.cta-primary,
.cta-large,
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover,
.cta-large:hover,
.btn-primary:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.intro-block {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

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

.intro-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-block p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.visual-statement {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
}

.statement-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.statement-item {
    display: flex;
    flex-direction: column;
}

.statement-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.statement-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.statement-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

.services-preview {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.select-service,
.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover,
.btn-submit:hover {
    background-color: #3a7a8a;
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
}

.why-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-medium);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-medium);
}

.why-image {
    width: 100%;
}

.why-image img {
    width: 100%;
    border-radius: 8px;
}

.testimonial-section {
    padding: 5rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    background-color: var(--accent-color);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-large:hover {
    background-color: #b87d24;
    color: var(--white);
}

.form-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-container > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-hero {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
}

.team-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-medium);
}

.credentials-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-medium);
}

.credentials-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.credentials-section p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.approach-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    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;
}

.approach-step h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.approach-step p {
    color: var(--text-medium);
}

.service-detail-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.service-detail-section.alt-bg {
    background-color: var(--background-light);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail.reverse {
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.pricing-notes {
    padding: 5rem 1.5rem;
    background-color: var(--background-medium);
}

.pricing-notes h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-notes p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.contact-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-medium);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.map-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-section > .container > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.faq-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
}

.thanks-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-bottom: 3rem;
}

.service-selected {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--success);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.next-step p {
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-footer p {
    color: var(--text-medium);
}

.legal-page {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-page p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: var(--background-light);
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-section {
        flex-direction: row;
        padding: 6rem 1.5rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
        margin-right: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        flex: 1;
    }

    .statement-grid {
        flex-direction: row;
    }

    .statement-item {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .why-section {
        flex-direction: row;
        align-items: center;
    }

    .why-content,
    .why-image {
        flex: 1;
    }

    .why-content {
        margin-right: 3rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-image {
        flex: 1;
    }

    .story-text {
        margin-right: 3rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .approach-step {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        flex-shrink: 0;
        margin-right: 1.5rem;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .service-detail-content {
        margin-right: 3rem;
    }

    .service-detail.reverse .service-detail-content {
        margin-right: 0;
        margin-left: 3rem;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .next-steps-grid {
        flex-direction: row;
    }

    .next-step {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }
}