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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    transition: opacity 0.2s;
}

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

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.hero-content {
    margin-bottom: 60px;
}

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

.hero-subtitle {
    font-size: 21px;
    color: #666;
    font-weight: 300;
    max-width: 580px;
}

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

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

.intro-statement {
    padding: 160px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.statement-wrapper {
    max-width: 900px;
}

.large-text {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -1px;
}

.visual-break {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 120px;
    gap: 80px;
    align-items: center;
}

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

.image-panel img {
    width: 100%;
    height: 100%;
    display: block;
}

.text-panel {
    flex: 1;
    padding: 40px 0;
}

.text-panel h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

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

.services-showcase {
    padding: 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.centered-heading {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image-wrap {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

.service-item > div:last-child {
    flex: 1;
}

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

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.select-service-btn.selected {
    background-color: #4a4a4a;
}

.inquiry-section {
    padding: 140px 60px;
    background-color: #f9f9f9;
}

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

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

.form-notice {
    padding: 15px;
    background-color: #fff3cd;
    color: #856404;
    margin-bottom: 30px;
    font-size: 14px;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.selected {
    background-color: #d4edda;
    color: #155724;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.approach-statement {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px;
    gap: 80px;
}

.approach-statement .statement-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-statement h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.approach-statement p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

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

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #999;
}

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

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

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

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #444;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

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

.cookie-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 14px;
}

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

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

.page-container h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 50px 0 20px;
    letter-spacing: -0.5px;
}

.page-container h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 15px;
}

.page-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.page-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-container ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

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

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    display: inline-block;
    min-width: 150px;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 120px auto;
    padding: 0 60px;
}

.thanks-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-container .selected-service {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
}

.thanks-container .selected-service h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.thanks-container a:hover {
    background-color: #333;
}

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

    .nav-links {
        gap: 25px;
    }

    .hero-minimal {
        padding: 0 30px;
        margin: 40px auto 0;
    }

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

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

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

    .intro-statement {
        padding: 80px 30px;
    }

    .large-text {
        font-size: 28px;
    }

    .visual-break {
        flex-direction: column;
        padding: 0 30px 80px;
        gap: 40px;
    }

    .image-panel {
        height: 400px;
    }

    .services-showcase {
        padding: 80px 30px;
    }

    .centered-heading {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .service-grid {
        gap: 60px;
    }

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

    .service-image-wrap {
        height: 300px;
        width: 100%;
    }

    .inquiry-section {
        padding: 80px 30px;
    }

    .form-container h2 {
        font-size: 32px;
    }

    .approach-statement {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .approach-image {
        height: 400px;
    }

    .main-footer {
        padding: 60px 30px 30px;
    }

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

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

    .page-container {
        padding: 60px 30px 80px;
    }

    .page-container h1 {
        font-size: 36px;
    }
}
