* {
    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: #fafafa;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
    background-color: #f5f5f5;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
    z-index: 2;
}

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

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

.hero-image {
    width: 100%;
    max-width: 1000px;
    background-color: #e0e0e0;
}

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

.intro-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.lead-text {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 300;
    color: #2a2a2a;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fafafa;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 500;
}

.service-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.price {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 10px;
}

.btn-select {
    margin-top: 10px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.selected-service-display {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f5f5f5;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.philosophy {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

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

.philosophy p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2a2a2a;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

.page-hero {
    padding: 100px 40px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 300;
}

.about-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-block {
    margin-bottom: 80px;
}

.about-block h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
}

.about-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.about-image {
    margin: 80px 0;
    background-color: #e0e0e0;
}

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

.values-section {
    margin-top: 100px;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 50px;
}

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

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

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

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

.services-detail {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

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

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

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

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

.price-display {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 30px 0;
}

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

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

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

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

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-info-block p {
    font-size: 18px;
    color: #666;
}

.contact-details {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-item .note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.location-note {
    margin-top: 60px;
    padding: 40px;
    background-color: #f5f5f5;
}

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

.location-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.thanks-service {
    font-weight: 500;
    color: #1a1a1a;
    margin: 30px 0;
}

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

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

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.last-updated {
    margin-top: 60px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 25px;
    }

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

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

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

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

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

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

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