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

:root {
    --primary-color: #2C5282;
    --secondary-color: #4A90D9;
    --accent-color: #F7941D;
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
    --error-color: #F56565;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text {
    max-width: 600px;
}

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

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

.hero-visual {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e3a5f;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.section-problem {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.split-visual-left,
.split-visual-right {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.split-visual-left img,
.split-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-right,
.split-content-left {
    flex: 1;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content-right p,
.split-content-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.section-insight h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 700;
}

.insight-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
    line-height: 1.6;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.insight-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.section-services {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--border-color);
    min-height: 320px;
}

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

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

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

.service-info p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.btn-service {
    align-self: flex-start;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #d67f19;
}

.section-cta-inline {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.section-testimonials h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.contact-form {
    margin-top: 24px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px 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 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.selected-service-display {
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-medium);
}

.selected-service-display span {
    font-weight: 700;
    color: var(--primary-color);
}

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

.btn-submit:hover {
    background-color: #1e3a5f;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.email-display {
    user-select: all;
    cursor: text;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

.btn-cookie-accept:hover {
    background-color: #38a169;
}

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

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

.page-header {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-intro {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

.section-story {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.section-approach h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 700;
}

.approach-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
    line-height: 1.6;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-block {
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.approach-block h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

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

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

.section-team h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.team-intro-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.section-cta-about {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.services-detail-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-visual {
    flex: 1;
    background-color: var(--border-color);
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-detail-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.section-process h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-approach {
    flex: 1;
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
}

.contact-approach h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-approach p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-tips {
    margin: 32px 0;
}

.approach-tips h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-tips ul {
    padding-left: 24px;
}

.approach-tips li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.section-faq h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.thanks-box {
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 48px;
    margin-bottom: 30px;
}

.thanks-box h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-medium);
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    text-align: left;
}

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

.next-step p {
    flex: 1;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-grid,
    .values-grid {
        flex-direction: column;
    }
}