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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: white;
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

.hamburger:hover span {
    background-color: #3498db;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #3498db;
}

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

.story-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.article-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.article-intro {
    font-size: 20px;
    color: #7f8c8d;
    line-height: 1.6;
}

.article-image {
    margin-bottom: 50px;
    background-color: #ecf0f1;
}

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

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f8f9fa;
}

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

.image-caption {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    padding: 0 20px 20px;
}

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

.text-link-cta {
    color: #3498db;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.text-link-cta:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    border: 1px solid #e0e0e0;
    padding: 30px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

.form-section h2 {
    margin-top: 0;
}

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

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

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

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

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

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

.testimonial-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #ecf0f1;
    border-left: 4px solid #95a5a6;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 20px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff9e6;
    border: 1px solid #f39c12;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #34495e;
}

.final-cta {
    text-align: center;
    margin: 60px 0 40px;
    padding: 50px 30px;
    background-color: #2c3e50;
    color: white;
}

.final-cta h2 {
    color: white;
    margin-top: 0;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

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

.footer-column p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.thanks-message {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-message .cta-button {
    margin-top: 20px;
}

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

    .hamburger {
        display: flex;
    }

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

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

    .article-content {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 28px;
    }

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

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

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

    .cookie-content p {
        min-width: auto;
    }
}