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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

.site-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 500;
}

.ad-notice-mobile {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.editorial-layout {
    background-color: #ffffff;
}

.content-article {
    padding-top: 48px;
}

.hero-editorial {
    margin-bottom: 64px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.hero-image-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

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

.intro-section,
.insight-section,
.process-section,
.testimonial-section,
.services-preview,
.form-section,
.disclaimer-section {
    margin-bottom: 64px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #2c3e50;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 48px;
    color: #1a1a1a;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

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

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.quote-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 24px 32px;
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.quote-box cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: #7f8c8d;
}

.process-step {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 2px solid #ecf0f1;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.btn-service {
    display: inline-block;
    padding: 10px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
    border-radius: 8px;
    padding: 24px 32px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7d6608;
    margin: 0;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 64px 0 24px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
}

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 24px;
    }

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

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

.page-content {
    padding: 64px 0;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.service-detail {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 40px;
    scroll-margin-top: 100px;
}

.service-detail h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
    color: #2c3e50;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-detail li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 0;
    color: #2c3e50;
}

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

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
}

.legal-content {
    padding: 64px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
}

.thanks-box {
    background-color: #f8f9fa;
    border: 2px solid #27ae60;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.about-image {
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

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