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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f9f9f9;
}

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

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.ad-label {
    font-size: 0.75rem;
    color: #856404;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2980b9;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 4rem 3rem 3rem;
}

.hero-text h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: #ecf0f1;
    max-width: 600px;
}

.intro-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 2rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
}

.intro-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.intro-right {
    flex: 1;
    background-color: #e8eef2;
}

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

.featured-insights {
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.insight-card.wide {
    flex: 1 1 60%;
    flex-direction: row;
}

.insight-card.narrow {
    flex: 1 1 35%;
}

.insight-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #95a5a6;
}

.insight-card.wide img {
    width: 45%;
    height: auto;
}

.insight-content {
    padding: 2rem;
}

.insight-tag {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.insight-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.insight-link {
    display: inline-block;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.insight-link:hover {
    color: #1a5a8a;
}

.services-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid.magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h5 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

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

.trust-section.asymmetric {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.trust-image {
    flex: 1;
    background-color: #d5dbe0;
}

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

.testimonial-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #95a5a6;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 3rem 2rem 1.5rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

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

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

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-container h2 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.thanks-service strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.btn-home {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .intro-split,
    .trust-section.asymmetric,
    .testimonial-wrapper {
        flex-direction: column;
    }

    .featured-insights {
        flex-direction: column;
    }

    .insight-card.wide {
        flex-direction: column;
    }

    .insight-card.wide img {
        width: 100%;
    }

    .services-grid.magazine {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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