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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.navigation {
    display: flex;
    gap: 32px;
}

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

.navigation a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: #f8f5f0;
}

.hero-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
}

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

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.intro-block {
    background-color: #ffffff;
    padding: 96px 32px;
}

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

.intro-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
    text-align: center;
}

.intro-block p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
    text-align: left;
}

.services-preview {
    background-color: #fafafa;
    padding: 96px 32px;
}

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

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

.section-header-center h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #ffffff;
    padding: 96px 32px;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: #6c757d;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #2c3e50;
    padding: 80px 32px;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 64px;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 48px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #ecf0f1;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 64px 32px;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
}

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 64px 32px 32px;
}

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

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

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer-column a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    padding: 24px 32px;
    display: none;
    z-index: 1000;
}

.cookie-banner.active {
    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;
    min-width: 300px;
    font-size: 14px;
    color: #2c3e50;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

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

.page-header {
    background-color: #f8f5f0;
    padding: 96px 32px 64px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.lead-text {
    font-size: 20px;
    color: #6c757d;
}

.content-section {
    padding: 80px 32px;
    background-color: #ffffff;
}

.content-section:nth-child(even) {
    background-color: #fafafa;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.content-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-section {
    padding: 0;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.values-section {
    background-color: #ffffff;
    padding: 96px 32px;
}

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

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

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

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    background-color: #3498db;
    padding: 80px 32px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.services-detailed {
    padding: 64px 32px;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 96px;
}

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

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 32px;
}

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

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.process-section {
    background-color: #f8f9fa;
    padding: 80px 32px;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 64px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.contact-info-section {
    background-color: #ffffff;
    padding: 64px 32px;
}

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

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

.contact-item h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.thanks-section {
    background-color: #f8f5f0;
    padding: 120px 32px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

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