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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    padding: 0;
}

.hero-content {
    padding: 100px 80px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.intro-statement {
    padding: 120px 80px;
    background-color: #f9f8f6;
}

.statement-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.statement-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
    color: #2c2c2c;
    text-align: center;
}

.insight-section {
    padding: 120px 80px;
}

.insight-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-image {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.insight-text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.benefits-grid {
    padding: 120px 80px;
    background-color: #f4f2ef;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.benefits-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #5a5a5a;
}

.testimonial-inline {
    padding: 100px 80px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.testimonial-content cite {
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    color: #888;
}

.services-preview {
    padding: 120px 80px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.services-intro p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fafaf9;
    padding: 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 30px 25px 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #5a5a5a;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    margin: 25px 25px 20px;
    color: #2c2c2c;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 30px;
    padding: 15px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-form-section {
    padding: 120px 80px;
    background-color: #f9f8f6;
}

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

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

.form-intro {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.submit-btn {
    padding: 18px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.final-statement {
    padding: 100px 80px;
    background-color: #2c2c2c;
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-content p {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-disclaimer p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: #888;
    max-width: 900px;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    flex: 1;
    margin-right: 30px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 100px 80px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 80px 120px;
}

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

.content-block {
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.content-block p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.content-image {
    width: 100%;
    height: 450px;
    margin: 60px 0 80px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
}

.services-detailed {
    padding: 80px 80px 120px;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 100px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-header h2 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.price-tag {
    font-size: 32px;
    font-weight: 300;
    color: #2c2c2c;
}

.detail-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.detail-text {
    flex: 1.5;
}

.detail-text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.detail-text h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.detail-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.detail-text ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.detail-text ul li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.detail-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
}

.cta-section {
    padding: 100px 80px;
    background-color: #f9f8f6;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.contact-info {
    padding: 80px 80px 120px;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 50px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

.contact-approach {
    padding: 80px 80px;
    background-color: #f9f8f6;
}

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

.approach-content h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.approach-content p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.thanks-message {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.thanks-detail {
    margin: 40px 0;
    padding: 25px;
    background-color: #f9f8f6;
}

.thanks-detail p {
    font-size: 17px;
    font-weight: 300;
}

.thanks-next {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thanks-button,
.thanks-button-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.thanks-button {
    background-color: #2c2c2c;
    color: #ffffff;
}

.thanks-button-secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.thanks-button:hover,
.thanks-button-secondary:hover {
    opacity: 0.7;
}

.legal-page {
    padding: 80px 80px 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 25px 0 15px;
}

.legal-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .main-nav,
    .hero-content,
    .intro-statement,
    .insight-section,
    .benefits-grid,
    .testimonial-inline,
    .services-preview,
    .contact-form-section,
    .final-statement,
    .main-footer,
    .page-hero,
    .about-content,
    .services-detailed,
    .contact-info,
    .contact-approach,
    .thanks-section,
    .legal-page {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cookie-banner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .insight-container,
    .contact-wrapper,
    .detail-content {
        flex-direction: column;
    }

    .benefits-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-content h1 {
        font-size: 42px;
    }

    .section-title,
    .services-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .statement-text {
        font-size: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}
