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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5f4e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d2f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #7ec3a8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-cookie-accept {
    background-color: #1a5f4e;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #0d3d2f;
}

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

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

.nav-minimal {
    background-color: #fff;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1a5f4e;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 4rem 2rem 3rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-intro {
    margin: 4rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.inline-image-section {
    margin: 5rem 0;
}

.inline-image-section img {
    width: 100%;
    margin-bottom: 1rem;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.problem-section,
.insight-section,
.reveal-section,
.trust-section {
    margin: 5rem 0;
}

.problem-section h2,
.insight-section h2,
.reveal-section h2,
.trust-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.problem-section p,
.insight-section p,
.reveal-section p,
.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.highlight-box {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #1a5f4e;
}

.highlight-box p {
    margin-bottom: 0;
}

.cta-inline {
    margin: 3rem 0;
    text-align: center;
}

.link-cta {
    font-size: 1.2rem;
    color: #1a5f4e;
    font-weight: 600;
    border-bottom: 2px solid #1a5f4e;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.link-cta:hover {
    color: #0d3d2f;
    border-bottom-color: #0d3d2f;
}

.testimonial-inline {
    margin: 5rem 0;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c2c2c;
    border-left: 4px solid #1a5f4e;
    padding-left: 2rem;
    margin: 2rem 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.services-visual {
    margin: 3rem 0;
}

.service-card-editorial {
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card-editorial img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.service-detail {
    font-size: 0.9rem;
    color: #666;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f4e;
    margin-top: 1.5rem;
}

.cta-section-break {
    background-color: #1a5f4e;
    color: #fff;
    padding: 4rem 2rem;
    margin: 5rem 0;
    text-align: center;
}

.cta-section-break h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-break p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #1a5f4e;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f4e;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

.testimonial-grid {
    margin: 5rem 0;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial-item cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.urgency-section {
    margin: 5rem 0;
}

.availability-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.availability-notice p {
    margin-bottom: 0;
    color: #856404;
}

.form-section {
    margin: 6rem 0;
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f4e;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    width: auto;
}

.form-checkbox label {
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5f4e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 78, 0.3);
}

.final-cta {
    margin: 6rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-final {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background-color: #1a5f4e;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #0d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 95, 78, 0.3);
}

.guarantee-section {
    margin: 4rem 0;
    background-color: #f5f5f5;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f4e;
    font-weight: 700;
    font-size: 1.3rem;
}

.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background-color: #1a5f4e;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(26, 95, 78, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #0d3d2f;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(26, 95, 78, 0.5);
}

.page-header {
    padding: 4rem 0 3rem;
    background-color: #f5f5f5;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.page-about .full-width-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 8px;
}

.quality-list {
    list-style: none;
    margin: 2rem 0;
}

.quality-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.quality-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f4e;
    font-weight: 700;
    font-size: 1.5rem;
}

.team-section {
    margin: 5rem 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-role {
    color: #1a5f4e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-section {
    margin: 5rem 0;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.cta-section-simple {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cta-section-simple h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.page-services .service-detail-card {
    margin-bottom: 5rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-card .service-image {
    width: 100%;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.service-specs {
    margin: 2rem 0;
}

.service-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-specs ul {
    list-style: none;
}

.service-specs li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
}

.service-specs li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f4e;
    font-weight: 700;
}

.service-price-box {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f4e;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5f4e;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #0d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 78, 0.3);
}

.delivery-info {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.delivery-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-item p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.faq-section {
    margin: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.page-contact .contact-intro {
    margin: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    margin-bottom: 1.5rem;
    color: #1a5f4e;
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.contact-card a {
    color: #1a5f4e;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.contact-spacing {
    margin-top: 1rem;
}

.visit-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.map-section {
    margin: 5rem 0;
}

.map-placeholder {
    background-color: #e0e0e0;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #666;
}

.faq-contact {
    margin: 5rem 0;
}

.contact-cta {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #1a5f4e;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.contact-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-thanks .thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
}

.thanks-icon {
    margin: 0 auto 2rem;
    color: #1a5f4e;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.thanks-details {
    margin: 5rem 0;
}

.thanks-info-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.thanks-info-box h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a5f4e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1rem;
    color: #3a3a3a;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-note h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.thanks-note ul {
    list-style: none;
    padding-left: 1.5rem;
}

.thanks-note li {
    margin-bottom: 0.5rem;
    color: #856404;
    position: relative;
}

.thanks-note li:before {
    content: "•";
    position: absolute;
    left: -1.5rem;
}

.contact-box {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-next {
    margin: 5rem 0;
}

.thanks-next h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.next-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.action-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.action-card p {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f5f5f5;
    color: #1a5f4e;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a5f4e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f4e;
    color: #fff;
}

.testimonial-thanks {
    margin: 5rem 0;
}

.testimonial-thanks h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.thanks-testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.thanks-testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-style: italic;
}

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

.thanks-final {
    margin: 5rem 0;
    text-align: center;
}

.thanks-final-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-signature {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.legal-page .legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.legal-content {
    margin: 3rem 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content strong {
    color: #1a1a1a;
}

.warning-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
}

.legal-footer {
    font-style: italic;
    color: #666;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #3a3a3a;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .stats-inline {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-grid,
    .info-grid,
    .next-actions {
        flex-direction: column;
    }

    .service-detail-card .service-image img {
        height: 250px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .narrow-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-image-wrapper {
        height: 50vh;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        padding: 0 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}