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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-disclaimer {
    font-size: 0.75rem;
    color: #999;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    border-radius: 8px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-overlay p {
    color: #f0f0f0;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-primary {
    background: #d4a574;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c19563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,165,116,0.4);
}

.intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.intro-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

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

.intro-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 0;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: calc(33.333% - 1.35rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.btn-select {
    background: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
}

.service-display {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
    color: #555;
}

.service-display.selected {
    background: #fff8f0;
    border-color: #d4a574;
    color: #d4a574;
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

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

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(33.333% - 1.35rem);
    min-width: 280px;
}

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

.value-card p {
    font-size: 1rem;
    color: #666;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-bottom: 1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ddd;
}

.about-content {
    padding: 4rem 0;
}

.content-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
    padding: 2rem;
}

.text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.image-block {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.mission-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.mission-card p {
    font-size: 1.1rem;
    color: #555;
}

.team-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

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

.team-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    width: calc(33.333% - 1.35rem);
    min-width: 280px;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-card .role {
    font-size: 0.95rem;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #666;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

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

.service-info h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.service-info p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.service-info ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.75rem;
    color: #555;
}

.btn-select-large {
    background: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-select-large:hover {
    background: #1a252f;
}

.contact-section {
    padding: 4rem 0;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.info-item p {
    font-size: 1rem;
    color: #555;
}

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

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

.faq-item p {
    font-size: 0.95rem;
    color: #555;
}

.visit-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.visit-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.visit-card p {
    font-size: 1.05rem;
    color: #555;
}

.legal-page {
    padding: 2rem 0 4rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

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

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

.cookie-table td {
    color: #555;
}

.thanks-section {
    padding: 4rem 0;
}

.thanks-card {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

.service-selected {
    font-size: 1.1rem;
    color: #d4a574;
    padding: 1rem;
    background: #fff8f0;
    border-radius: 6px;
}

.thanks-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    width: calc(33.333% - 1.35rem);
    min-width: 250px;
    text-align: center;
}

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

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

.step-card p {
    font-size: 0.95rem;
    color: #666;
}

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

.btn-primary {
    background: #d4a574;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

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

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .service-card {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

    .team-card {
        width: 100%;
    }

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

    .image-block,
    .service-image {
        min-height: 250px;
    }

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

    .step-card {
        width: 100%;
    }

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