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

:root {
    --primary-color: #1a4d7a;
    --primary-dark: #0f3354;
    --secondary-color: #2c7bb6;
    --accent-color: #e8734d;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

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

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

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

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

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

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

.nav-menu li {
    margin: 8px 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s;
}

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

.hero-card {
    position: relative;
    height: 520px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--bg-white);
}

.hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #d1603d;
    transform: translateY(-2px);
}

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

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

.intro-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.intro-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.stats-cards {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.stat-card {
    flex: 1 1 280px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    color: var(--bg-white);
}

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

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

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

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

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.btn-select-service:hover {
    background: var(--primary-dark);
}

.approach-section {
    padding: 80px 0;
}

.approach-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}

.approach-content {
    flex: 1 1 500px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.approach-features {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #d1603d;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.cta-sticky.visible {
    display: block;
}

.sticky-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-cta p {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.btn-sticky-cta {
    padding: 10px 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-sticky-cta:hover {
    background: #d1603d;
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

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

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

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 14px;
    margin: 0;
    flex: 1 1 400px;
}

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

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

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

.btn-cookie-accept:hover {
    background: #d1603d;
}

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

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.about-intro {
    padding: 80px 0;
}

.about-content-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-content-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.story-section {
    padding: 80px 0;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.story-content {
    flex: 1 1 500px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.story-stats {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-stat-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 10px;
    text-align: center;
}

.story-stat-item h3 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.story-stat-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-image-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 24px;
}

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

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

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

.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 48px;
    border-radius: 12px;
    text-align: center;
    color: var(--bg-white);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 28px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

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

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

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.services-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-section {
    padding: 60px 0;
}

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

.contact-info-card {
    flex: 1 1 400px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 28px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1 1 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-overlay {
    text-align: center;
    color: var(--bg-white);
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 400px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.faq-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    color: var(--bg-white);
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.thanks-details strong {
    color: var(--primary-color);
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.next-steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.step-item {
    flex: 1 1 220px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.step-item strong {
    font-size: 18px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .nav-menu li {
        margin: 0 0 0 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .intro-card {
        padding: 60px;
    }

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

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .cookie-content {
        flex-wrap: nowrap;
    }
}
