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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAFAFA;
}

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

.header-main {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #DDD;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #4A7C59;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #F5F3F0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1A1A1A;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4A4A4A;
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4A7C59;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3D6A4A;
}

.intro-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.why-us-section {
    background-color: #F9F8F6;
    padding: 100px 40px;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.why-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4A4A4A;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #3A3A3A;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
}

.why-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-preview {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.section-header-center p {
    font-size: 18px;
    color: #5A5A5A;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.service-details p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5A5A5A;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.link-more {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #4A7C59;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
}

.link-more:hover {
    text-decoration: underline;
}

.process-section {
    background-color: #F5F3F0;
    padding: 100px 40px;
}

.process-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1A1A1A;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #4A7C59;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 19px;
    margin-bottom: 6px;
    color: #1A1A1A;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5A5A5A;
}

.process-image {
    flex: 1;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.form-section {
    padding: 100px 40px;
    background-color: #FFFFFF;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 12px;
    text-align: center;
    color: #1A1A1A;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5A5A5A;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

.btn-submit {
    padding: 16px;
    background-color: #4A7C59;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.footer-main {
    background-color: #2C2C2C;
    color: #CCCCCC;
    padding: 60px 40px 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

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

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

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

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    max-width: 900px;
    margin: 12px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: #4A7C59;
    color: #FFFFFF;
}

.btn-cookie:hover {
    background-color: #3D6A4A;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

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

.page-hero {
    background-color: #F5F3F0;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.page-hero p {
    font-size: 18px;
    color: #5A5A5A;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

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

.service-includes {
    margin: 28px 0;
    padding: 24px;
    background-color: #F9F8F6;
    border-radius: 6px;
}

.service-includes h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #4A4A4A;
}

.service-includes ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4A7C59;
}

.service-pricing-block {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #5A5A5A;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #4A7C59;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-banner {
    background-color: #4A7C59;
    color: #FFFFFF;
    padding: 80px 40px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FFFFFF;
    color: #4A7C59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.about-intro {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.about-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.values-section {
    background-color: #F9F8F6;
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1A1A1A;
}

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

.value-card {
    flex: 1;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1A1A1A;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.approach-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.approach-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.approach-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.experience-numbers {
    background-color: #F5F3F0;
    padding: 80px 40px;
    text-align: center;
}

.experience-numbers h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1A1A1A;
}

.numbers-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.number-item {
    flex: 1;
}

.number {
    font-size: 52px;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    color: #5A5A5A;
}

.team-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.team-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.team-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.contact-main {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1A1A1A;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.email-text {
    color: #4A7C59;
    font-weight: 600;
}

.note-text {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.faq-section {
    background-color: #F9F8F6;
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1A1A1A;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 28px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.thanks-page {
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4A4A4A;
}

.service-info {
    padding: 20px;
    background-color: #F5F3F0;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2C2C2C;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #F9F8F6;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #4A4A4A;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #4A7C59;
    color: #FFFFFF;
}

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

.btn-secondary {
    background-color: transparent;
    color: #4A7C59;
    border: 2px solid #4A7C59;
}

.btn-secondary:hover {
    background-color: #4A7C59;
    color: #FFFFFF;
}

.legal-page {
    padding: 80px 40px;
    background-color: #FFFFFF;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4A4A4A;
}

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

.legal-container ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.legal-container a {
    color: #4A7C59;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #E0E0E0;
}

.cookie-table th {
    background-color: #F5F3F0;
    font-weight: 600;
    color: #2C2C2C;
}

.cookie-table td {
    font-size: 14px;
    color: #4A4A4A;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-content,
    .process-split,
    .service-detail-block,
    .about-split,
    .approach-split,
    .team-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .services-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .intro-image,
    .why-image,
    .process-image,
    .service-detail-image,
    .about-image,
    .approach-image,
    .team-image,
    .contact-image {
        height: 350px;
    }

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

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

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .nav-main {
        gap: 18px;
        font-size: 14px;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

img {
    object-fit: cover;
}