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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-disclosure {
    color: #999;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #ddd;
}

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

.intro-right {
    flex: 1;
    padding: 2rem 0;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card .select-service {
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #1a252f;
}

.services-action {
    text-align: center;
    margin-top: 3rem;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.process-right {
    flex: 1;
    order: 2;
}

.process-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.process-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.process-left {
    flex: 1;
    order: 1;
    background-color: #ddd;
}

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

.form-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.form-container h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    color: #ccc;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

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

.form-group label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-indicators {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
}

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

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

.trust-item h3 {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #ccc;
    font-size: 1.1rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom .disclaimer {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #ccc;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #d4a574;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #b8874f;
}

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

.btn-reject:hover {
    background-color: #333;
}

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

.page-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.team-image {
    flex: 1;
    background-color: #ddd;
}

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

.facility-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.facility-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.facility-details {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.facility-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.facility-image {
    background-color: #ddd;
}

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

.sustainability-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.sustainability-split {
    display: flex;
    gap: 3rem;
}

.sustainability-left,
.sustainability-right {
    flex: 1;
}

.sustainability-left p,
.sustainability-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-about {
    background-color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

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

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

.pricing-notes {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

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

.pricing-notes-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-notes-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.contact-layout {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

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

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-detail {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

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

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-image-section {
    flex: 1;
    background-color: #ddd;
}

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

.directions-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.directions-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.directions-item {
    flex: 1;
    min-width: 280px;
}

.directions-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.directions-item p {
    color: #555;
    line-height: 1.7;
}

.visit-info {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.visit-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.visit-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.contact-cta {
    background-color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-section {
    min-height: 60vh;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #333;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

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

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.legal-content strong {
    color: #333;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .team-split,
    .service-detail-item,
    .contact-layout,
    .sustainability-split {
        flex-direction: column;
    }

    .process-right {
        order: 1;
    }

    .process-left {
        order: 2;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid,
    .trust-content,
    .footer-content {
        flex-direction: column;
    }

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

    .steps-grid,
    .values-grid,
    .directions-content {
        flex-direction: column;
    }
}