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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 80px 24px 0 24px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.intro-block {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
}

.services-preview {
    background-color: #f1f8f4;
    padding: 100px 24px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 64px;
}

.service-card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    flex: 0 1 360px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 24px 24px 16px 24px;
}

.service-card p {
    color: #546e7a;
    margin: 0 24px 16px 24px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 16px 24px;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 24px 24px 24px;
    border-radius: 4px;
}

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

.why-section {
    background-color: #ffffff;
    padding: 100px 24px;
}

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

.split-content {
    flex: 1 1 450px;
}

.split-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.split-image {
    flex: 1 1 450px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
}

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

.link-arrow {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #229954;
}

.cta-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 24px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 64px 24px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    color: #b0bec5;
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #b0bec5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    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;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    opacity: 0.9;
}

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

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

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #546e7a;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 100%;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
}

.about-intro {
    background-color: #ffffff;
    padding: 80px 24px;
}

.about-story {
    background-color: #f8f9fa;
    padding: 100px 24px;
}

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

.values-section {
    background-color: #ffffff;
    padding: 100px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 64px;
}

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

.value-item {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 26px;
    color: #27ae60;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.approach-section {
    background-color: #f1f8f4;
    padding: 100px 24px;
}

.approach-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.approach-section p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.services-intro {
    background-color: #ffffff;
    padding: 80px 24px;
}

.services-detailed {
    background-color: #f8f9fa;
}

.service-detail-item {
    padding: 100px 24px;
}

.service-detail-item:nth-child(even) {
    background-color: #ffffff;
}

.service-detail-image {
    flex: 1 1 500px;
    overflow: hidden;
    background-color: #e8f5e9;
    border-radius: 8px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.service-price-block {
    margin: 32px 0;
    padding: 24px;
    background-color: #f1f8f4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-label {
    font-size: 18px;
    color: #546e7a;
}

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

.service-detail-item.reverse {
    background-color: #ffffff;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 48px 24px;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

.disclaimer-text {
    font-size: 15px;
    color: #6d4c41;
    line-height: 1.6;
    font-style: italic;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-item {
    flex: 1 1 280px;
}

.contact-item h3 {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-text-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-text-block p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-page {
    background-color: #ffffff;
    padding: 80px 24px;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page em {
    color: #7f8c8d;
}

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

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

    .nav-links {
        gap: 20px;
    }

    .container-split {
        gap: 32px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

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

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

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