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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.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;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.main-content {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 30px;
}

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.intro-text {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
    font-style: italic;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.4;
    font-weight: 600;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #2c3e50;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 4px;
}

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

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

.btn-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.highlight-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #3498db;
    margin: 50px -40px;
}

.insight-list {
    list-style: none;
    margin-top: 30px;
}

.insight-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.benefit-box {
    background-color: #e8f4f8;
    padding: 30px;
    margin: 30px 0;
    border-radius: 6px;
}

.benefit-box p {
    margin-bottom: 20px;
}

.benefit-box p:last-child {
    margin-bottom: 0;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial {
    border-left: 4px solid #95a5a6;
    padding-left: 30px;
    font-style: italic;
    color: #5a6c7d;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
    display: block;
    margin-top: 10px;
}

.process-steps {
    margin-top: 35px;
}

.step {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.step strong {
    display: block;
    font-size: 19px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    font-size: 17px;
    margin-bottom: 0;
}

.services-preview {
    margin-top: 70px;
}

.service-form {
    margin-top: 40px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-static {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.service-card input[type="radio"] {
    margin-right: 20px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.service-card input[type="radio"]:checked ~ .service-info {
    color: #2c3e50;
}

.service-card input[type="radio"]:checked {
    accent-color: #3498db;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    margin-top: 0;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.form-fields {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-fields h3 {
    font-size: 24px;
    margin-bottom: 25px;
    margin-top: 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.final-section {
    margin-top: 80px;
    text-align: center;
}

.final-cta {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231,76,60,0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    padding: 16px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.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: 250px;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 30px;
    padding: 25px;
    background-color: #34495e;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .main-content {
        padding: 0 20px;
        margin: 40px auto;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section p {
        font-size: 17px;
    }

    .highlight-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .form-fields {
        padding: 25px 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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

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

    .cookie-content p {
        margin-right: 0;
    }
}