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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-header {
    position: relative;
}

.floating-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.brand {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 68px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.intro-story {
    padding: 90px 20px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.9;
}

.opening-line {
    font-size: 26px;
    font-style: italic;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1.6;
}

.narrow-content p {
    margin-bottom: 24px;
}

.image-content-split {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.split-text {
    flex: 1;
    padding: 20px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.centered-insight {
    padding: 100px 20px;
    background-color: #2c2c2c;
    text-align: center;
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
}

.insight-box h2 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 300;
}

.insight-box p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.8;
}

.visual-showcase {
    padding: 70px 20px;
    background-color: #ffffff;
}

.showcase-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.showcase-item {
    flex: 1;
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 30px 20px 20px;
    font-size: 20px;
    font-weight: 300;
}

.trust-building {
    padding: 90px 20px;
    background-color: #f9f9f9;
}

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

.container-narrow h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

.testimonial-inline {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    text-align: right;
}

.benefits-reveal {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

.benefit-cards {
    display: flex;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 400;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
}

.pricing-reveal {
    padding: 100px 20px;
    background-color: #fafafa;
}

.pricing-content {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.pricing-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    color: #666;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-item h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-item p {
    padding: 0 24px 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-price {
    padding: 0 24px 20px;
    font-size: 22px;
    font-weight: bold;
    color: #d4af37;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.form-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

.selected-service-display {
    background-color: #f0f0f0;
    padding: 15px;
    margin-bottom: 24px;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    color: #2c2c2c;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 400;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-container {
        flex-direction: column;
    }

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

    .benefit-cards {
        flex-direction: column;
    }

    .service-item {
        flex: 0 0 100%;
    }

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

    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}