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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9d93;
    --accent-color: #c4a962;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e5e2;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 79, 0.97);
    color: white;
    padding: 30px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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: 25px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.nav-minimal {
    padding: 40px 60px;
    background-color: var(--bg-white);
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--bg-light);
}

.hero-minimal {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-minimal img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-section {
    padding: 140px 60px;
    background-color: var(--bg-white);
}

.intro-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 46px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 90px;
    color: var(--text-dark);
}

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

.service-card-minimal {
    display: flex;
    gap: 60px;
    background-color: var(--bg-white);
    padding: 50px;
    align-items: flex-start;
}

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

.service-image-wrap {
    flex: 1;
    min-width: 450px;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-tag {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.btn-select {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #234b3e;
    transform: translateY(-2px);
}

.value-section {
    padding: 130px 60px;
    background-color: var(--primary-color);
    color: white;
}

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

.value-content h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 70px;
}

.value-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
}

.value-item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.form-container h2 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 25px;
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-form {
    text-align: left;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #234b3e;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 60px 30px;
}

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

.footer-section {
    flex: 1;
}

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

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

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999999;
}

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

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

.page-hero {
    padding: 120px 60px 100px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 54px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
}

.about-story {
    padding: 120px 60px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

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

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 70px;
}

.philosophy-grid {
    display: flex;
    gap: 60px;
    text-align: left;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-section {
    padding: 120px 60px;
    background-color: var(--bg-white);
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 70px;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 35px;
}

.step-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--accent-color);
    min-width: 80px;
}

.step div {
    flex: 1;
}

.step h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.values-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.services-detailed {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-detail-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.service-features {
    margin-bottom: 35px;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 10px 0 10px 25px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 34px;
    font-weight: 300;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    display: block;
}

.services-cta {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.contact-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

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

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 25px;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.location-note {
    padding: 25px;
    background-color: rgba(44, 95, 79, 0.05);
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.location-note p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-section {
    padding: 140px 60px;
    background-color: var(--bg-white);
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 40px;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 50px;
    display: none;
}

.thanks-info p {
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-details {
    text-align: left;
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-light);
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 12px 0 12px 30px;
    position: relative;
}

.thanks-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.legal-page {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 500;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 25px 30px;
    }

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

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

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

    .hero-content p {
        font-size: 18px;
    }

    .intro-section,
    .services-preview,
    .value-section,
    .form-section {
        padding: 80px 30px;
    }

    .service-card-minimal {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

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

    .service-image-wrap {
        min-width: 100%;
    }

    .value-grid,
    .philosophy-grid {
        flex-direction: column;
        gap: 40px;
    }

    .story-container,
    .service-detail {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}