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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #2c5f8d;
    --text-dark: #222;
    --text-light: #666;
    --text-white: #fff;
    --border-color: #ddd;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--overlay-light);
    backdrop-filter: blur(10px);
    padding: 1.2rem 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.3rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.cta-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--text-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 3px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.intro-narrative {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
}

.visual-story {
    padding: 4rem 5%;
    background: var(--secondary-color);
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-item {
    flex: 1 1 300px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.story-item.large {
    flex: 1 1 100%;
}

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-item:hover img {
    transform: scale(1.05);
}

.story-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-white);
}

.story-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.story-caption p {
    font-size: 1rem;
    line-height: 1.5;
}

.trust-builder {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--text-white);
}

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

.testimonial p {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.services-reveal {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

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

.services-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.urgency-block {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: white;
    text-align: center;
}

.urgency-content h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1.1rem;
}

.cta-urgency:hover {
    transform: scale(1.05);
}

.image-showcase {
    padding: 0;
}

.showcase-row {
    display: flex;
    flex-wrap: wrap;
}

.showcase-row img {
    flex: 1 1 33.333%;
    min-width: 300px;
    height: 350px;
    object-fit: cover;
}

.benefits-reveal {
    padding: 6rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.booking-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.booking-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.btn-submit {
    padding: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

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

.final-testimonial {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.testimonial-large {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.testimonial-large p {
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-large cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.site-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    color: #999;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    margin-top: 70px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-info {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #234a6d;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.page-hero {
    margin-top: 70px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 5rem 5%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
}

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

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

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

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

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

.cta-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: #234a6d;
    transform: translateY(-3px);
}

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-light);
}

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

.about-hero {
    margin-top: 70px;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.about-narrative {
    padding: 5rem 5%;
}

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

.narrative-container h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-paragraph {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.image-insert {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.quote-block {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--secondary-color);
    border-left: 5px solid var(--accent-color);
}

.quote-block blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

.contact-page {
    margin-top: 70px;
    padding: 5rem 5%;
    min-height: 70vh;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-block {
    flex: 1 1 250px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.map-section {
    background: var(--secondary-color);
    padding: 3rem 5%;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background: #ddd;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 5%;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 5%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .trust-content,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .showcase-row img {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .contact-info {
        flex-direction: column;
    }
}
