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

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

.ad-disclosure {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-nav {
    background-color: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #6b6b6b;
}

.hero-minimal {
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-center {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title-large {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #3a3a3a;
}

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

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

.intro-spacing {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.lead-text {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #2a2a2a;
    font-weight: 400;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-minimal {
    padding: 100px 40px;
    background-color: #fafafa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.services-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-wide {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image-container {
    flex: 1;
    height: 500px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-content-right,
.service-content-left {
    flex: 1;
    padding: 40px;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.service-content-right p,
.service-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.price-display {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.select-service-btn {
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #3a3a3a;
}

.select-service-btn.selected {
    background-color: #4a4a4a;
}

.form-section-minimal {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.form-container-center h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 60px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #2a2a2a;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #9a9a9a;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.section-title-center {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 80px 40px 40px;
}

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: #3a3a3a;
    border-left: 3px solid #6a6a6a;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #4a4a4a;
}

.footer-bottom p {
    font-size: 13px;
    color: #9a9a9a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 32px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #3a3a3a;
}

.thanks-section {
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 32px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.page-section {
    padding: 80px 40px;
}

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

.page-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 24px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.page-content ul,
.page-content ol {
    margin-left: 40px;
    margin-bottom: 24px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 3px solid #1a1a1a;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
}

@media (max-width: 968px) {
    .hero-title-large {
        font-size: 42px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nav-links {
        gap: 24px;
    }
}