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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b6f47;
    --accent-color: #c9a875;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-top: 80px;
    z-index: 2;
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-cluster {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -100px;
    margin-top: 40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

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

.btn-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 90, 61, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: 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: 1rem;
}

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

.intro-diagonal {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.intro-text-block {
    flex: 2;
    max-width: 700px;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image-small {
    flex: 1;
}

.intro-image-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.comparison-stacked {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.section-heading-center {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 70px;
    font-weight: 700;
}

.comparison-card-left,
.comparison-card-right {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.comparison-card-right {
    flex-direction: row-reverse;
}

.card-visual {
    flex: 1;
}

.card-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.card-content {
    flex: 1;
    padding: 30px;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.card-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-card-center {
    margin-bottom: 80px;
}

.card-visual-wide {
    width: 100%;
    margin-bottom: 40px;
}

.card-visual-wide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.card-content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.card-content-centered h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.card-content-centered p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
}

.feature-list-inline {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.feature-list-inline li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

.services-interactive {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.services-interactive h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

.service-card p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.service-price {
    padding: 0 25px 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-select:hover {
    background-color: #234a30;
}

.form-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.form-privacy {
    margin-top: 10px;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.trust-block {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.trust-block h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-reasons {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer-split {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 5% 0;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.footer-disclaimer p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-cookie-accept:hover {
    background-color: var(--bg-light);
}

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

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

.page-hero-minimal {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-minimal p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: center;
}

.story-block-left {
    flex: 1;
}

.story-block-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: var(--bg-light);
    align-items: flex-start;
}

.values-content {
    flex: 2;
}

.values-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.values-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.value-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.values-visual {
    flex: 1;
}

.values-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.team-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

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

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-member h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.philosophy-full {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.philosophy-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-content-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-about {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.cta-about .btn-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 80px 5%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

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

.service-note {
    background-color: var(--bg-light);
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    margin: 25px 0;
    font-size: 0.95rem;
}

.service-detail-card .btn-select {
    width: auto;
    margin: 20px 0 0 0;
}

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

.service-detail-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-detail-content-center h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-content-center p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

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

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 15px;
    font-size: 0.95rem;
}

.contact-visual-right {
    flex: 1;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: var(--bg-light);
}

.contact-cta-box {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-page {
    padding: 100px 5%;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.step {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.thanks-contact {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.thanks-contact p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-subtitle,
.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-content a {
    color: var(--primary-color);
    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: 700;
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 30px 5%;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 40px 5%;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .comparison-card-left,
    .comparison-card-right {
        flex-direction: column;
    }

    .services-grid-asymmetric {
        grid-template-columns: 1fr;
    }

    .trust-reasons {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .about-story {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .values-offset {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        margin-bottom: 60px;
    }

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

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
    }
}