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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b6f47;
    --accent-color: #c99352;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f5f1;
    --background-cream: #faf7f2;
    --border-color: #e0d5c7;
}

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hero-section {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--background-cream);
}

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

.hero-text h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8dfd5;
}

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

.story-section {
    padding: 110px 40px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 22px;
}

.story-image {
    flex: 1;
    background-color: #e8dfd5;
}

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

.insight-section {
    padding: 90px 40px;
    background-color: var(--background-light);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-left {
    flex: 1;
    background-color: #d5c7b8;
}

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

.insight-right {
    flex: 1.1;
}

.insight-right h3 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: var(--text-dark);
}

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

.problem-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 46px;
    margin-bottom: 60px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.problem-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    border-radius: 4px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.solution-section {
    padding: 110px 40px;
    background-color: #ffffff;
}

.solution-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.solution-text {
    flex: 1.3;
}

.solution-text h2 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.solution-image {
    flex: 1;
    background-color: #e8dfd5;
}

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

.testimonials-section {
    padding: 90px 40px;
    background-color: var(--background-cream);
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-wrapper h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    border-left: 3px solid var(--accent-color);
}

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

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

.benefits-section {
    padding: 110px 40px;
    background-color: #ffffff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 46px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefit-icon {
    flex: 1;
    background-color: #e8dfd5;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.services-intro h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-section {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 4px;
    max-width: 540px;
    width: 90%;
    position: relative;
}

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

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

.modal-content h3 {
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-display {
    background-color: var(--background-light);
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 70px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

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

.disclaimer {
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: #ffffff;
    padding: 24px 40px;
    z-index: 1500;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #234a30;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: #ffffff;
}

.page-hero {
    padding: 120px 40px 80px;
    background-color: var(--background-cream);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8dfd5;
}

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

.about-philosophy {
    padding: 90px 40px;
    background-color: var(--background-light);
}

.philosophy-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.philosophy-left {
    flex: 1;
    background-color: #d5c7b8;
}

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

.philosophy-right {
    flex: 1;
}

.philosophy-right h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.about-process {
    padding: 100px 40px;
    background-color: #ffffff;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-step {
    padding: 35px 40px;
    background-color: var(--background-cream);
    border-left: 4px solid var(--secondary-color);
}

.process-step h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-team {
    padding: 90px 40px;
    background-color: var(--background-light);
}

.team-content {
    max-width: 1100px;
    margin: 0 auto 50px;
}

.team-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.team-image {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #d5c7b8;
}

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

.about-values {
    padding: 100px 40px;
    background-color: #ffffff;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-container h3 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    padding: 40px 32px;
    background-color: var(--background-cream);
    border-top: 3px solid var(--accent-color);
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-detailed {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detailed:last-child {
    margin-bottom: 0;
}

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

.service-image {
    flex: 1;
    background-color: #e8dfd5;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.service-cta {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #234a30;
}

.services-faq {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px 35px;
}

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

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

.contact-main {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-map {
    flex: 1;
    position: relative;
    background-color: #e8dfd5;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 90, 61, 0.9);
    padding: 24px;
}

.map-overlay p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.faq-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px 28px;
}

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

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

.contact-cta {
    padding: 90px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b8843f;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 100px;
}

.thanks-container h1 {
    font-size: 46px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-main {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    background-color: var(--background-light);
    padding: 35px 40px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

.thanks-info {
    background-color: var(--background-cream);
    padding: 30px 35px;
    margin-bottom: 50px;
    text-align: left;
}

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

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

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

.button-primary,
.button-secondary {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.button-primary:hover {
    background-color: #234a30;
}

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

.button-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.thanks-extra {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.extra-content {
    max-width: 1100px;
    margin: 0 auto;
}

.extra-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.extra-cards {
    display: flex;
    gap: 35px;
}

.extra-card {
    flex: 1;
    background-color: #ffffff;
    overflow: hidden;
}

.extra-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #e8dfd5;
}

.extra-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.extra-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    padding: 0 24px 24px;
}

.legal-page {
    padding: 80px 40px 100px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 46px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: var(--primary-color);
}

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

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .story-container,
    .insight-wrapper,
    .solution-content,
    .about-container,
    .philosophy-wrapper,
    .contact-container,
    .service-detailed {
        flex-direction: column;
    }

    .problem-grid,
    .testimonial-cards,
    .values-grid,
    .services-grid,
    .faq-grid,
    .extra-cards,
    .footer-content {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}