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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.cookie-accept, .cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
}

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

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-label {
    background-color: #f39c12;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.editorial-main {
    background-color: #fdfdfb;
}

.hero-article {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
}

.content-flow {
    padding: 80px 20px;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.opening-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
}

.content-flow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 60px 0 25px 0;
    color: #2c3e50;
}

.content-flow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.text-link {
    font-size: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

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

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.highlight-box {
    background-color: #fff8e1;
    border-left: 4px solid #f39c12;
    padding: 25px 30px;
    margin: 40px 0;
    font-size: 18px;
}

.services-preview {
    margin: 60px 0;
}

.service-card {
    background-color: white;
    padding: 35px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

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

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.inline-btn {
    background-color: #3498db;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 30px 35px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #34495e;
    font-size: 16px;
}

.feature-list {
    margin: 40px 0;
}

.feature-item {
    margin: 25px 0;
    padding-left: 20px;
    border-left: 3px solid #3498db;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 17px;
    color: #4a5568;
}

.cta-section {
    margin: 60px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #ecf0f1;
    padding: 80px 20px;
    margin-top: 60px;
}

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

.form-section > .narrow-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    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 {
    width: 100%;
    background-color: #3498db;
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 20px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 15px;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.about-hero {
    background-color: #3498db;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.about-content h2 {
    font-size: 36px;
    margin: 50px 0 20px 0;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #4a5568;
}

.services-hero {
    background-color: #27ae60;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-grid {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-hero {
    background-color: #34495e;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 15px 0;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 12px 0;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }

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

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

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

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