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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-full {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
}

.story-intro {
    padding: 120px 40px;
    background-color: #fafafa;
}

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

.opening-line {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.image-text-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.offset-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.offset-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-block {
    padding: 120px 40px;
    background-color: #2a2a2a;
    color: #ffffff;
}

.insight-block h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 35px;
    text-align: center;
}

.insight-block .narrow-content p {
    color: #d0d0d0;
    font-size: 18px;
    margin-bottom: 25px;
}

.trust-showcase {
    padding: 100px 40px;
    background-color: #ffffff;
}

.showcase-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.showcase-item {
    flex: 1;
    background-color: #fafafa;
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.showcase-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.showcase-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 25px;
    color: #4a4a4a;
}

.testimonial-inline {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.testimonial-inline blockquote {
    border-left: 4px solid #1a1a1a;
    padding-left: 30px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.services-reveal {
    padding: 120px 40px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 70px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 27px);
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 15px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 25px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

.contact-form {
    background-color: #ffffff;
    padding: 45px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2a2a2a;
    font-weight: 500;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

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

.final-cta {
    padding: 100px 40px;
    background-color: #2a2a2a;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d0d0d0;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #e0e0e0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 70px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.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: rgba(255,255,255,0.1);
}

.page-header {
    padding: 80px 40px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    color: #666;
}

.content-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a1a1a;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #2a2a2a;
}

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

.content-wrapper ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

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

.contact-info-box {
    background-color: #f8f8f8;
    padding: 35px;
    margin: 40px 0;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-box p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.thanks-message {
    padding: 150px 40px;
    background-color: #f8f8f8;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-message h1 {
    font-size: 52px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.thanks-message p {
    font-size: 19px;
    color: #666;
    margin-bottom: 15px;
    max-width: 700px;
}

.thanks-message .back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.thanks-message .back-link:hover {
    background-color: #3a3a3a;
}

@media (max-width: 1024px) {
    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card {
        width: calc(50% - 20px);
    }

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

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

    .service-card {
        width: 100%;
    }

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

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