* {
    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: #1a1a1a;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-transparent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    color: #fff;
}

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

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

.nav-items a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-items a:hover {
    opacity: 0.7;
}

.ad-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-left: 1rem;
}

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.content-visual {
    padding: 0;
}

.visual-block {
    position: relative;
    height: 85vh;
    background-color: #f5f5f5;
}

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

.text-overlay-left {
    position: absolute;
    left: 5%;
    bottom: 10%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.text-overlay-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.text-overlay-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.link-arrow {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.service-selection {
    padding: 6rem 5%;
    background: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card-img {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    height: 450px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #e0e0e0;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-img:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    padding: 2rem;
    transform: translateY(60%);
    transition: transform 0.4s ease;
}

.service-card-img:hover .card-overlay-content {
    transform: translateY(0);
}

.card-overlay-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-overlay-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.select-service {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #f0f0f0;
}

.service-card-img.selected .card-overlay-content {
    background: linear-gradient(to top, rgba(26,26,26,0.95), transparent);
}

.service-card-img.selected {
    outline: 3px solid #1a1a1a;
}

.form-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

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

.contact-form {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    padding: 1rem;
    background: #f5f5f5;
    border-left: 3px solid #ddd;
    color: #666;
}

.selected-service-display.active {
    background: #e8f5e9;
    border-left-color: #1a1a1a;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #333;
}

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

.visual-statement {
    position: relative;
    height: 70vh;
    background-color: #2a2a2a;
}

.statement-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.statement-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.statement-text p {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 2rem;
}

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

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

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

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

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

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-card {
    background: #fff;
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.thanks-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #333;
}

.page-header {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    font-weight: 500;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.page-content li {
    margin-bottom: 0.5rem;
}

.nav-light {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-light .nav-brand {
    color: #1a1a1a;
}

.nav-light .nav-items a {
    color: #1a1a1a;
}

.nav-light .ad-label {
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .nav-items {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card-img {
        flex: 1 1 100%;
    }

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

    .text-overlay-left {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
    }

    .statement-text p {
        font-size: 1.4rem;
    }
}
