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

:root {
    --primary: #2c5f7d;
    --secondary: #e8a87c;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #c38d6b;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    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 {
    flex: 1;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-cookie {
    background: var(--secondary);
    color: var(--dark);
}

.btn-cookie:hover {
    background: var(--accent);
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: lowercase;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background: var(--light);
    border-radius: 3px;
}

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

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--primary);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    background: var(--border);
}

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

.intro-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 8%;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background: var(--border);
}

.intro-visual img {
    width: 100%;
    border-radius: 8px;
}

.services-alternate {
    padding: 5rem 8%;
    background: #fff;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 4rem;
    font-weight: 700;
}

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

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

.service-image {
    flex: 1;
    background: var(--border);
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 4rem 8%;
    background: var(--light);
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-visual {
    flex: 1;
    background: var(--border);
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 4rem 5%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--dark);
}

.footer-minimal {
    background: var(--dark);
    color: #fff;
    padding: 4rem 8% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.footer-brand p {
    color: #ccc;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: #ccc;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 8%;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-page {
    padding: 5rem 8%;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-page li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-offset,
    .service-row,
    .form-section-split,
    .footer-content,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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