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

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

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

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

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

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

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    padding: 80px 60px;
    background-color: #fff;
}

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

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

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

.hero-image {
    width: 100%;
    background-color: #e8e8e8;
}

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

.content-block {
    padding: 100px 60px;
    background-color: #fff;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.narrow-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.narrow-text p {
    margin-bottom: 20px;
}

.image-feature {
    padding: 60px;
    background-color: #fafafa;
}

.image-feature img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.content-block-wide {
    padding: 120px 60px;
    background-color: #f5f5f5;
}

.content-block-wide h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

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

.feature-item {
    flex: 1;
}

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

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

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

.services-preview h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fafafa;
    padding: 0;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 30px 10px 30px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 30px 20px 30px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 30px;
    color: #2a2a2a;
}

.cta-select {
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    padding: 14px 0;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-container h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.form-selected-service {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    border-left: 3px solid #2a2a2a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 0;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-block {
    padding: 100px 60px;
    background-color: #fff;
}

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

.page-header h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 18px;
    color: #666;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.value-block {
    display: flex;
    gap: 50px;
    padding: 80px 60px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
}

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

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

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

.cta-section h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #ccc;
}

.btn-primary {
    display: inline-block;
    padding: 16px 50px;
    background-color: #fff;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail.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: 400;
    margin-bottom: 25px;
}

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

.price-display {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 25px 0;
    color: #2a2a2a;
}

.btn-service-select {
    display: inline-block;
    padding: 14px 40px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

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

.info-block {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-info-block > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

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

.location-info {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

.thanks-message {
    flex: 1;
}

.thanks-message h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 10px;
}

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

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

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

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

footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 60px 30px 60px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 25px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject {
    background-color: #f0f0f0;
    color: #2a2a2a;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

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

    .value-block {
        flex-direction: column;
    }

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

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