:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a7ba7;
    --accent-color: #e8973f;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

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

.hero-split {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
}

.value-split,
.trust-split,
.testimonials-split,
.story-split,
.team-split,
.approach-split,
.process-split,
.services-intro-split,
.contact-split,
.thanks-info-split {
    padding: 100px 40px;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.label {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

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

.stat-item strong {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 14px;
    color: var(--light-text);
}

.problem-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.content-centered p {
    font-size: 18px;
    color: var(--light-text);
}

.intro {
    font-size: 18px;
    color: var(--light-text);
}

.services-select {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: white;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 28px;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--light-text);
    display: block;
    margin-top: 6px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-text);
}

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

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.form-info p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item .icon {
    width: 28px;
    height: 28px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial {
    margin-bottom: 32px;
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.author {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 600;
}

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #d68532;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(232, 151, 63, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 151, 63, 0.6);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 40px;
    color: white;
}

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

.hero-content-center h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content-center p {
    font-size: 22px;
    opacity: 0.95;
}

.values-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

.numbers-section {
    padding: 100px 40px;
}

.numbers-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-item {
    text-align: center;
}

.number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.number-label {
    font-size: 16px;
    color: var(--light-text);
}

.cta-about {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.detailed-services {
    background-color: var(--bg-white);
}

.service-detail-split {
    padding: 100px 40px;
}

.service-detail-split.alternate {
    background-color: var(--bg-light);
}

.service-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-price {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.service-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-text);
}

.service-list {
    margin: 32px 0;
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    padding-left: 28px;
    font-size: 16px;
    position: relative;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.additional-services {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.additional-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.add-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.step-content p {
    font-size: 16px;
    color: var(--light-text);
}

.guarantee-section {
    padding: 100px 40px;
}

.guarantee-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-info-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.contact-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    flex: 1 1 300px;
    text-align: center;
    padding: 32px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.locations-section {
    padding: 100px 40px;
}

.locations-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.location-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 250px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.location-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--light-text);
}

.response-time {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.faq-contact {
    padding: 100px 40px;
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #239039 100%);
    padding: 120px 40px;
    color: white;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.selected-service {
    margin-top: 24px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 16px;
}

.next-steps {
    padding: 100px 40px;
}

.steps-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
}

.thanks-links {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.thanks-contact {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.contact-email {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0;
}

.contact-email a {
    color: var(--primary-color);
}

.legal-hero {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.last-updated {
    font-size: 16px;
    color: var(--light-text);
}

.legal-text {
    padding: 80px 40px;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 10px;
}

.legal-text a {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.legal-text a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .hero-content,
    .split-container,
    .form-split {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .nav-container {
        padding: 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .split-text h2,
    .content-centered h2 {
        font-size: 32px;
    }

    .service-card,
    .value-card,
    .additional-card,
    .faq-item,
    .guarantee-item {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .numbers-grid {
        flex-direction: column;
        gap: 32px;
    }

    .thanks-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
