* {
    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.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

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

.nav-brand {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

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

.hero-minimal {
    background-color: #fff;
    padding: 100px 60px 0;
}

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

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1.1;
}

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

.hero-image-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.intro-section {
    padding: 120px 60px;
    background-color: #fff;
}

.intro-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.intro-wrapper p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

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

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
}

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

.service-card h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 18px;
    padding: 0 30px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    padding: 0 30px;
    color: #2a2a2a;
}

.cta-button {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 30px 30px;
}

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

.philosophy-section {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 35px;
}

.philosophy-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.consultation-form-section {
    padding: 120px 60px;
    background-color: #2a2a2a;
    color: #fff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #ccc;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #555;
    background-color: #3a3a3a;
    color: #fff;
    font-family: inherit;
}

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

.submit-button {
    background-color: #fff;
    color: #2a2a2a;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #e0e0e0;
}

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

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

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

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

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

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

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 60px;
    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 {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

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

.cookie-accept {
    background-color: #2a2a2a;
    color: #fff;
}

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

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

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

.page-header {
    padding: 100px 60px 60px;
    background-color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1px;
}

.about-intro {
    padding: 60px 60px 80px;
    background-color: #fff;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.about-split {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background-color: #f5f5f5;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
}

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

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-section {
    padding: 100px 60px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.process-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

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

.process-steps {
    display: flex;
    gap: 60px;
}

.process-step {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 200;
    color: #ccc;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.team-image-section {
    background-color: #e0e0e0;
}

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

.services-detailed {
    padding: 60px 60px 100px;
    background-color: #fff;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-cta-section {
    padding: 100px 60px;
    background-color: #2a2a2a;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
}

.service-cta-content p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 50px;
}

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #2a2a2a;
    padding: 20px 60px;
    font-size: 17px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.contact-content {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 40px;
}

.contact-info-block h2:first-of-type {
    margin-top: 0;
}

.contact-detail {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #f5f5f5;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background-color: #e0e0e0;
}

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

.directions-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

.directions-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.directions-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-section {
    padding: 150px 60px;
    background-color: #fff;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 22px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 60px 100px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    opacity: 0.7;
}

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

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

    .philosophy-section {
        flex-direction: column;
    }

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 30px;
        padding: 30px 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-minimal {
        padding: 60px 30px 0;
    }

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

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

    .intro-section,
    .services-preview,
    .philosophy-section,
    .consultation-form-section,
    .about-intro,
    .about-split,
    .values-section,
    .process-section,
    .services-detailed,
    .service-cta-section,
    .contact-content,
    .directions-section,
    .thanks-section,
    .legal-page {
        padding: 60px 30px;
    }

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

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

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