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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    padding: 40px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: #1a1a1a;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.hero-minimal {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    max-width: 600px;
    line-height: 1.6;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-section {
    padding: 180px 60px;
    background-color: #fff;
}

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

.content-narrow h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #444;
}

.services-preview {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 120px;
    letter-spacing: -0.5px;
}

.service-card-minimal {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 180px;
}

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

.service-image-wrap {
    flex: 1;
    min-width: 0;
    background-color: #e8e8e8;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-text {
    flex: 1;
    padding: 40px;
}

.service-text h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.btn-secondary {
    padding: 18px 50px;
    background-color: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

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

.form-section {
    padding: 150px 60px;
    background-color: #fff;
}

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

.form-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-primary {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.philosophy-section {
    padding: 180px 60px;
    background-color: #f5f5f5;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column h3,
.footer-column h4 {
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column h3 {
    font-size: 1.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #555;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: #555;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #1a1a1a;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
}

.thanks-container h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 20px;
}

.thanks-container .btn-secondary {
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .service-card-minimal,
    .service-card-minimal.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .content-narrow h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}