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

:root {
    --primary-color: #4a2c2a;
    --secondary-color: #d4a574;
    --accent-color: #8b5a3c;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e8e4df;
    --success-color: #5a8f5a;
    --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;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

.nav-main a:hover {
    color: var(--accent-color);
}

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

.hero-section {
    margin-bottom: 60px;
}

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 600px;
    background-color: var(--primary-color);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    background-color: rgba(74, 44, 42, 0.85);
    padding: 50px 40px;
    border-radius: 12px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.intro-section,
.problem-section,
.solution-section,
.benefits-section,
.testimonials-section,
.services-preview-section,
.form-section,
.disclaimer-section,
.about-story-section,
.values-section,
.team-section,
.process-section,
.commitment-section,
.services-detail-section,
.faq-section,
.contact-section,
.contact-info-section,
.map-section,
.thanks-section,
.thanks-tips-section,
.legal-section {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.intro-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
}

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

.problem-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.problem-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.solution-card-main {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.solution-text {
    flex: 1;
    min-width: 300px;
}

.solution-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.solution-list {
    list-style: none;
    padding-left: 0;
}

.solution-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-color);
}

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

.solution-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.benefits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--border-color);
}

.benefit-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.benefit-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

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

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

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

.service-price {
    padding: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 14px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: var(--accent-color);
    transform: scale(1.02);
}

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: scale(1.02);
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

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

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

.footer-main {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 25px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

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

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

.about-card-main {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-large {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-content-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.team-content-card img {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--border-color);
}

.team-text {
    flex: 1;
    min-width: 300px;
}

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

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0.6;
}

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

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

.commitment-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.commitment-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.services-intro-card {
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

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

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

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

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-detail-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.btn-action {
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-action:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

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

.faq-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

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

.contact-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
}

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

.info-cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.map-info-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.map-info-card ul {
    list-style-position: inside;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.thanks-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

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

.thanks-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.selected-service-text {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.tips-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--border-color);
}

.tip-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

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

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

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

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

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

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

    .section-title {
        font-size: 32px;
    }

    .card-grid,
    .problem-grid,
    .benefits-grid,
    .testimonial-grid,
    .services-card-grid,
    .values-grid,
    .process-grid,
    .faq-grid,
    .contact-grid,
    .info-cards-grid,
    .tips-grid {
        flex-direction: column;
    }

    .solution-card-main,
    .about-card-main,
    .team-content-card,
    .service-detail-card {
        flex-direction: column;
    }

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

    .legal-content {
        padding: 40px 30px;
    }

    .form-card {
        padding: 30px 20px;
    }
}