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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #d4a574;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #c49563;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #ffffff;
}

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

.header-split {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.header-container {
    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;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.hero-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c49563;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

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

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-image {
    flex: 1;
    background: #f8f8f8;
    overflow: hidden;
}

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

.value-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.value-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.insight-section {
    background: #fafafa;
    padding: 6rem 2rem;
}

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

.insight-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 3rem;
}

.insight-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-left: 3px solid #d4a574;
}

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

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

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

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
    cursor: pointer;
}

.service-item:hover {
    background: #fafafa;
}

.service-info {
    flex: 1;
    max-width: 700px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 300;
    color: #d4a574;
}

.btn-select {
    padding: 0.8rem 2rem;
    border: 1px solid #d4a574;
    background: transparent;
    color: #d4a574;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

.service-item.selected {
    background: #fafafa;
    border-left: 4px solid #d4a574;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #2c2c2c;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    max-width: 500px;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #d4a574;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: #3a3a3a;
    overflow: hidden;
}

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

.form-section {
    background: #f5f5f5;
    padding: 6rem 2rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.consultation-form {
    background: #ffffff;
    padding: 3rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #d4a574;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #d4a574;
}

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 8rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.thanks-container .service-selected {
    background: #fafafa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid #d4a574;
}

.thanks-container .service-selected strong {
    color: #d4a574;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #d4a574;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #c49563;
}

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .testimonial-split {
        flex-direction: column;
    }

    .hero-text,
    .value-text {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .service-price {
        align-items: flex-start;
    }

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

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