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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

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

.main-nav {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

.hero-content {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 300;
}

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

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

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

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

.centered-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.large-text {
    font-size: 24px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
}

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

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #5a5a5a;
    margin-bottom: 25px;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-preview {
    padding: 140px 40px;
    background: #ffffff;
}

.section-header-centered {
    max-width: 700px;
    margin: 0 auto 100px;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 52px;
    font-weight: 300;
    color: #1a1a1a;
}

.service-cards-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    max-width: 600px;
    background: #fafafa;
    padding: 0;
    transition: transform 0.3s;
}

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

.service-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 40px;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    padding: 0 40px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    padding: 0 40px;
}

.price-display {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 35px;
    padding: 0 40px;
}

.cta-minimal {
    width: calc(100% - 80px);
    margin: 0 40px 40px;
    padding: 18px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-minimal:hover {
    background: #000;
}

.testimonial-minimal {
    padding: 140px 40px;
    background: #f5f5f5;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 28px;
    line-height: 1.7;
    color: #2c2c2c;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

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

.benefits-section {
    padding: 140px 40px;
    background: #ffffff;
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 0 0 calc(50% - 30px);
}

.benefit-item h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.form-section {
    padding: 140px 40px;
    background: #fafafa;
}

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

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

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    font-size: 16px;
    color: #2c2c2c;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 20px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #000;
}

.research-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.research-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.research-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5a5a5a;
}

.research-content a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

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

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    color: #aaa;
    font-size: 13px;
}

.references-list a {
    color: #ccc;
    text-decoration: none;
}

.references-list a:hover {
    color: #ffffff;
}

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

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #000;
}

.cookie-reject {
    background: #e0e0e0;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.contact-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-page-layout h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.contact-info-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 17px;
    line-height: 1.9;
    color: #5a5a5a;
}

.about-hero {
    padding: 120px 40px;
    background: #ffffff;
}

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

.about-hero-content h1 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 22px;
    line-height: 1.8;
    color: #5a5a5a;
    font-weight: 300;
}

.about-section {
    padding: 100px 40px;
    background: #fafafa;
}

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

.about-content-wrapper h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.about-content-wrapper p {
    font-size: 18px;
    line-height: 1.9;
    color: #5a5a5a;
    margin-bottom: 25px;
}

.about-image-section {
    padding: 0 40px 100px;
    background: #fafafa;
}

.about-image-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.services-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.services-page-layout h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 100px;
    max-width: 800px;
}

.service-detail-card {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-detail-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fafafa;
}

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.back-link:hover {
    background: #000;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .hero-image-wrapper {
        height: 400px;
    }

    .story-container {
        flex-direction: column;
        gap: 50px;
    }

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

    .benefits-list {
        flex-direction: column;
    }

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

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

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

    .contact-info-grid {
        flex-direction: column;
    }
}