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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #34495e;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --fallback-bg: #ecf0f1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 18px;
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-accept:hover {
    background-color: var(--light-bg);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.ad-notice {
    font-size: 13px;
    color: var(--secondary-color);
    padding: 8px 15px;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-color);
}

.hero-minimal {
    padding: 120px 0;
    background-color: var(--white);
}

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

.hero-content h1 {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: var(--secondary-color);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.image-section {
    margin: 80px 0;
}

.full-width-image {
    width: 100%;
    background-color: var(--fallback-bg);
}

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

.intro-content {
    padding: 120px 0;
}

.intro-content h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.services-preview {
    padding: 120px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--fallback-bg);
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 30px 30px 20px 30px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 30px 30px 30px;
    flex: 1;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 30px 30px 30px;
}

.approach-section {
    padding: 120px 0;
}

.approach-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.form-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

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

.form-wrapper h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.form-wrapper > p {
    text-align: center;
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 50px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.additional-services {
    padding: 120px 0;
}

.additional-services h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 70px;
    text-align: center;
    color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.disclaimer-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.disclaimer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

.page-hero {
    padding: 100px 0 60px 0;
    background-color: var(--light-bg);
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content,
.about-philosophy {
    padding: 100px 0;
}

.about-content h2,
.about-philosophy h2,
.about-process h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-content p,
.about-philosophy p,
.about-process p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-image {
    margin: 80px 0;
}

.values-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

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

.value-item h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.about-process {
    padding: 100px 0;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.cta-box h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.services-detail {
    padding: 80px 0;
}

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

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--fallback-bg);
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.price-large {
    font-size: 48px;
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    margin-top: 30px;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: var(--text-color);
}

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

.contact-detail h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--fallback-bg);
}

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

.location-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.location-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.location-section p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.thanks-section {
    padding: 150px 0;
}

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.legal-page h2 {
    font-size: 36px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-page ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-color);
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

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

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

    .intro-content h2,
    .approach-section h2,
    .form-wrapper h2,
    .additional-services h2 {
        font-size: 36px;
    }

    .intro-content p,
    .approach-section p {
        font-size: 18px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

    .contact-form {
        padding: 30px;
    }
}