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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a3e8c;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5a3e8c;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f5fc;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e8dff5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a3e8c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #4a2d75;
}

.intro-reverse {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #e3f2fd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #fff;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.125rem;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: #546e7a;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5a3e8c;
    margin: 1rem 1.5rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #5a3e8c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #4a2d75;
}

.trust-builder {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 280px;
}

.feature-item h4 {
    font-size: 1.5rem;
    color: #5a3e8c;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #f8f5fc;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #5a3e8c;
}

.testimonial p {
    font-size: 1.0625rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9375rem;
    color: #546e7a;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-side {
    flex: 1;
    padding: 3rem;
}

.form-side h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a3e8c;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #5a3e8c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4a2d75;
}

.info-side {
    flex: 1;
    padding: 3rem;
    background-color: #f8f5fc;
}

.info-side h3 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.process-steps {
    list-style-position: inside;
    padding-left: 0;
}

.process-steps li {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff;
    border-top: 1px solid #ecf0f1;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9375rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header-split {
    display: flex;
    min-height: 400px;
    background-color: #fff;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

.header-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.header-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.7;
}

.header-image {
    flex: 1;
    background-color: #e3f2fd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailed-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    min-height: 500px;
    margin-bottom: 4rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-highlights {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-highlights li {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #5a3e8c;
    margin-bottom: 2rem;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-cta {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

.btn-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #5a3e8c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #4a2d75;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

.about-intro h1 {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
    object-fit: cover;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.mission-statement {
    font-size: 1.25rem;
    color: #546e7a;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.mission-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.mission-item {
    flex: 1;
    min-width: 280px;
}

.mission-item h3 {
    font-size: 1.5rem;
    color: #5a3e8c;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    background-color: #f8f5fc;
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #5a3e8c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9375rem;
    color: #546e7a;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
}

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

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
    object-fit: cover;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-list li strong {
    color: #2c3e50;
    font-weight: 700;
}

.impact-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.impact-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #5a3e8c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.0625rem;
    color: #546e7a;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background-color: #f8f5fc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.125rem;
    color: #546e7a;
}

.contact-content {
    padding: 3rem 2rem;
    background-color: #fff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.375rem;
    color: #5a3e8c;
    margin-bottom: 0.75rem;
}

.info-block p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.info-block .note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    background-color: #e0e0e0;
    object-fit: cover;
}

.image-caption {
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.location-section {
    padding: 3rem 2rem;
    background-color: #f8f5fc;
}

.location-section h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.location-info {
    max-width: 900px;
    margin: 0 auto;
}

.location-info p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f8f5fc;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-details p {
    font-size: 1.0625rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.next-steps ul {
    list-style-position: inside;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a3e8c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #4a2d75;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #95a5a6;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated,
.legal-note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.375rem;
    color: #5a3e8c;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-page ul li,
.legal-page ol li {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: #5a3e8c;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #4a2d75;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background-color: #f8f5fc;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.9375rem;
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-reverse,
    .page-header-split,
    .about-split,
    .values-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .header-content,
    .service-info {
        padding: 3rem 2rem;
    }

    .hero-text h1,
    .header-content h1,
    .about-intro h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .trust-features,
    .testimonial-grid,
    .team-grid,
    .impact-stats {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}