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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fafafa;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5a3d;
    letter-spacing: 1px;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

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

.nav-links a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 20px;
    background: #fff;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d5a3d;
    font-weight: 400;
}

.narrow-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.visual-break {
    width: 100%;
    background-color: #e8e4df;
}

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

.insight-section {
    padding: 100px 20px;
    background: #f5f3f0;
}

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

.content-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d5a3d;
    font-weight: 400;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.insight-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.full-width-visual {
    width: 100%;
    position: relative;
    background-color: #d9d5cf;
}

.image-text-overlay {
    position: relative;
    width: 100%;
    height: 70vh;
}

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

.overlay-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    z-index: 2;
}

.overlay-text h2 {
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.trust-elements {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: #f9f8f6;
    border-left: 4px solid #2d5a3d;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial .author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.collections-preview {
    padding: 100px 20px;
    background: #f5f3f0;
}

.collections-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
    font-weight: 400;
}

.collection-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e4df;
}

.collection-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #2d5a3d;
    font-weight: 500;
}

.collection-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #666;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #fff;
}

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

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

.benefit-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d5a3d;
    font-weight: 400;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e4df;
}

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

.pricing-section {
    padding: 100px 20px;
    background: #f5f3f0;
}

.pricing-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 400;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 35px 25px;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.price-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-card .price {
    display: block;
    font-size: 2rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 24px;
    background: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.select-service:hover {
    background: #234730;
}

.order-form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d5a3d;
    text-align: center;
    font-weight: 400;
}

.selected-service-display {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.selected-service-display span {
    font-weight: 600;
    color: #2d5a3d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d2d2d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f9f8f6;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background: #2d2d2d;
    color: #d0d0d0;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.98);
    color: #fff;
    padding: 25px 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-accept {
    background: #2d5a3d;
    color: #fff;
}

.btn-accept:hover {
    background: #234730;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: #e8e4df;
}

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

.about-story {
    padding: 100px 20px;
    background: #fff;
}

.values-section {
    padding: 100px 20px;
    background: #f5f3f0;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
    font-weight: 400;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.value-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: #fff;
}

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

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

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d5a3d;
    font-weight: 400;
}

.team-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e4df;
}

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

.process-section {
    padding: 100px 20px;
    background: #f5f3f0;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
    font-weight: 400;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    color: #2d5a3d;
    font-weight: 300;
    min-width: 60px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 500;
}

.process-step p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.impact-section {
    padding: 100px 20px;
    background: #fff;
}

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

.impact-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.impact-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.services-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
}

.hero-text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-text-center h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 400;
}

.hero-text-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e4df;
}

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

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

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 500;
}

.service-details p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-size: 1.5rem;
    line-height: 0.9;
}

.service-price {
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 1.8rem;
    color: #2d5a3d;
    font-weight: 600;
}

.care-instructions {
    padding: 100px 20px;
    background: #fff;
}

.care-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.care-item {
    flex: 1;
    min-width: 240px;
    padding: 25px;
    background: #f9f8f6;
    border-radius: 4px;
}

.care-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 500;
}

.care-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.contact-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-content {
    padding: 80px 20px;
    background: #fff;
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.info-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.email-display {
    color: #2d5a3d;
    font-weight: 500;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #e8e4df;
}

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

.visual-caption {
    padding: 15px;
    background: #f9f8f6;
}

.visual-caption p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
    background: #f5f3f0;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 500;
}

.faq-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.policies-links {
    padding: 80px 20px;
    background: #fff;
}

.policies-container {
    max-width: 1000px;
    margin: 0 auto;
}

.policies-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d5a3d;
    font-weight: 400;
}

.policies-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.policy-card {
    flex: 1;
    min-width: 220px;
    padding: 25px;
    background: #f9f8f6;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s;
}

.policy-card:hover {
    transform: translateY(-3px);
}

.policy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 500;
}

.policy-card p {
    font-size: 0.9rem;
    color: #666;
}

.thanks-container {
    margin-top: 80px;
    padding: 80px 20px;
    background: #fff;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d5a3d;
    font-weight: 400;
}

.order-summary {
    margin-bottom: 50px;
    padding: 25px;
    background: #f9f8f6;
    border-radius: 4px;
}

.order-summary p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d5a3d;
    font-weight: 400;
}

.steps-timeline {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-marker {
    width: 40px;
    height: 40px;
    background: #2d5a3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2d5a3d;
    font-weight: 500;
}

.step-content p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.important-info {
    margin-bottom: 40px;
    text-align: left;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.important-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.important-info ul {
    list-style: none;
}

.important-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.important-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #2d5a3d;
    color: #fff;
}

.btn-primary:hover {
    background: #234730;
}

.btn-secondary {
    background: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background: #2d5a3d;
    color: #fff;
}

.thanks-visual {
    margin-top: 60px;
    background-color: #e8e4df;
}

.thanks-visual img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.care-reminder {
    padding: 80px 20px;
    background: #f5f3f0;
}

.care-tips {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tip {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 4px;
}

.tip h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 500;
}

.tip p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.legal-content {
    margin-top: 80px;
    padding: 80px 20px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 400;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 500;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2d5a3d;
    font-weight: 500;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    color: #4a4a4a;
    font-weight: 500;
}

.legal-section p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #234730;
}

.legal-section strong {
    font-weight: 600;
    color: #2d2d2d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .overlay-text h2 {
        font-size: 2rem;
    }

    .nav-container {
        justify-content: center;
        gap: 15px;
    }

    .benefit-container,
    .team-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}