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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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-light);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.header-main {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

.hero-card {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: var(--shadow-lg);
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

.value-cards {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.container-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background-color: #dbeafe;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    color: var(--primary-color);
}

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

.card-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-preview {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 0 0 calc(50% - 16px);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 32px;
}

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

.service-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.btn-select-service:hover {
    background-color: #0284c7;
    transform: scale(1.02);
}

.form-section {
    max-width: 800px;
    margin: 72px auto;
    padding: 0 24px;
}

.form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 16px;
}

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

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

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-cards {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.info-card-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.info-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--bg-light);
    margin-top: 96px;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

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

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-medium);
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie.reject:hover {
    background-color: var(--border-color);
}

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

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.about-card-large {
    display: flex;
    align-items: center;
    gap: 48px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.about-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 0 0 calc(50% - 12px);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

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

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.approach-content h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.approach-card {
    flex: 0 0 calc(50% - 12px);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.approach-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.approach-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 16px;
}

.approach-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.stats-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg);
}

.stats-cards {
    display: flex;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.cta-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

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

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

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

.service-price-tag {
    display: inline-block;
    background-color: #dbeafe;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

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

.service-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.service-detail-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.contact-info-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.contact-cards-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon svg {
    color: var(--primary-color);
}

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

.contact-info-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-details-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.contact-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

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

.contact-detail-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-extra-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--bg-light);
}

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

.contact-extra-info ul {
    list-style: none;
    color: var(--text-medium);
}

.contact-extra-info li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.map-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.map-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.map-overlay p {
    color: var(--text-medium);
}

.faq-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-card {
    flex: 0 0 calc(50% - 12px);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

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

.faq-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 64px auto;
    padding: 0 24px;
}

.thanks-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    color: #16a34a;
}

.thanks-card h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.thanks-details {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-details p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.next-steps-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.next-steps-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
}

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

.step-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.additional-info-section {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 24px;
}

.info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

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

.info-box p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 64px auto;
    padding: 0 24px;
}

.legal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-lg);
}

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

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

.legal-content ul {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
    margin-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--bg-light);
    font-style: italic;
    color: var(--text-light);
}

.cookie-table {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 24px 0;
}

.cookie-table h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cookie-table ul {
    list-style: none;
    margin-left: 0;
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        padding: 32px;
    }

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

    .service-card {
        flex: 0 0 100%;
    }

    .container-cards {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 32px;
    }

    .about-card-large {
        flex-direction: column;
        padding: 32px;
    }

    .value-card,
    .approach-card,
    .faq-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .legal-content {
        padding: 32px;
    }
}