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

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

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.brand {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 0;
}

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 18px 0;
    transition: color 0.3s;
}

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

.main-article {
    max-width: 720px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.article-header {
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.5);
    padding: 50px 30px;
    text-align: center;
    width: 100%;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #ecf0f1;
    font-size: 20px;
    font-weight: 300;
}

.article-content {
    padding: 50px 40px;
}

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

.intro-section h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lead-paragraph {
    font-size: 21px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.intro-section p {
    margin-bottom: 20px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-preview {
    margin-bottom: 50px;
}

.services-preview h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    margin-top: 50px;
}

.service-story {
    margin-bottom: 45px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.service-story:last-of-type {
    border-bottom: none;
}

.service-story h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
}

.service-story p {
    margin-bottom: 12px;
    color: #555;
}

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

.inline-cta {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s, border-color 0.3s;
}

.inline-cta:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.why-us {
    margin-bottom: 50px;
}

.why-us h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.benefits-list {
    margin-top: 25px;
    margin-left: 25px;
    list-style-type: disc;
}

.benefits-list li {
    margin-bottom: 12px;
    color: #555;
}

.contact-section {
    margin-bottom: 50px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-section h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

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

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

.submit-btn {
    background-color: #27ae60;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    margin-top: 50px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #e67e22;
    font-size: 14px;
    color: #666;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

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

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

.footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #fff;
}

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

.services-detail {
    margin-bottom: 50px;
}

.service-detail-block {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e8e8e8;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-detail-block h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cta-section {
    text-align: center;
    padding: 50px 30px;
    background-color: #ecf0f1;
    border-radius: 6px;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.contact-info-section {
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-block h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-block strong {
    color: #34495e;
}

.thanks-section {
    text-align: center;
    padding: 60px 20px;
}

.thanks-section h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content {
    margin-top: 40px;
    text-align: left;
}

.thanks-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 20px;
}

.thanks-content ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.thanks-content ol li {
    margin-bottom: 10px;
    color: #555;
}

#selectedServiceText {
    background-color: #e8f5e9;
    padding: 15px 20px;
    border-left: 4px solid #27ae60;
    margin: 25px 0;
    font-weight: 500;
    color: #2c3e50;
}

.legal-content {
    max-width: 900px;
}

.legal-content section {
    margin-bottom: 35px;
}

.legal-content h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 26px;
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content h3 {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.team-section,
.values-section,
.approach-section {
    margin-bottom: 50px;
}

.team-section h2,
.values-section h2,
.approach-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.values-list {
    margin-left: 25px;
    list-style-type: none;
}

.values-list li {
    margin-bottom: 15px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        padding: 15px 0 10px;
    }

    .nav-links {
        gap: 20px;
        padding-bottom: 15px;
    }

    .nav-links a {
        padding: 5px 0;
    }

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

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

    .article-content {
        padding: 30px 20px;
    }

    .intro-section h1 {
        font-size: 32px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
