* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
}

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

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-content-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.intro-statement {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

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

.statement-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.statement-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.services-preview {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.services-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card-large {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.price-indicator {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 0.5rem 0;
}

.form-section-minimal {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

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

.form-container-centered h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-text {
    margin-top: 3rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #777;
    text-align: center;
}

.minimal-footer {
    padding: 4rem 2rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-notice {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

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

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

.about-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.about-content-section {
    padding: 6rem 2rem;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.about-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

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

.values-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.values-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.values-grid {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.approach-section {
    padding: 6rem 2rem;
}

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

.approach-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.services-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: #666;
}

.services-detailed {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.services-cta {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.contact-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-content {
    padding: 6rem 2rem;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #fafafa;
}

.contact-note h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 10rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-service-ref {
    font-size: 1rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 500;
}

.back-home-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.back-home-btn:hover {
    background-color: #333;
}

.legal-page {
    padding: 6rem 2rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

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

    .hero-content-overlay p {
        font-size: 1rem;
    }

    .service-card-large,
    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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