* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.header {
    background-color: #ffffff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: #666;
}

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
}

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

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

.intro-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.service-card {
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
    background-color: #f5f5f5;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

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

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-section {
    padding: 8rem 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #e5e5e5;
}

.about-preview {
    padding: 8rem 0;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

.form-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

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

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    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 {
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

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

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

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

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

.page-hero {
    padding: 6rem 0 4rem;
    background-color: #fafafa;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
}

.content-section {
    padding: 6rem 0;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    object-fit: cover;
    background-color: #f5f5f5;
}

.content-image-secondary {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    object-fit: cover;
    background-color: #f5f5f5;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

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

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

.principles-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.1rem;
}

.services-detail {
    padding: 6rem 0;
}

.service-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

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

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

.contact-content {
    padding: 6rem 0;
}

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

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

.info-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #f5f5f5;
}

.location-note {
    background-color: #fafafa;
    padding: 2rem;
}

.location-note h3 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.location-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.map-placeholder {
    padding: 4rem 0;
    background-color: #fafafa;
}

.map-box {
    background-color: #e5e5e5;
    padding: 4rem;
    text-align: center;
    color: #666;
}

.thanks-section {
    padding: 8rem 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

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

.next-steps h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    list-style-position: inside;
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.thanks-note {
    font-size: 0.95rem;
    color: #666;
}

.legal-content {
    padding: 6rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #555;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

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

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

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

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

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

    .container-split {
        flex-direction: column;
    }

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

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

    .container-footer {
        flex-direction: column;
        gap: 2rem;
    }

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

    .nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}