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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-link {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.main-nav {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4af37;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    font-family: 'Georgia', serif;
}

.nav-ad-notice {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

.hero-main {
    position: relative;
    height: 100%;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.content-magazine {
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.intro-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.intro-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.featured-insights {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.featured-insights h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.insight-card {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.insight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.insight-content {
    padding: 2rem;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-family: 'Arial', sans-serif;
}

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

.insight-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.services-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    font-family: 'Arial', sans-serif;
}

.services-layout {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.service-main {
    flex: 2;
}

.service-feature {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem;
}

.service-feature h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.service-feature p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #d4af37;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
}

.service-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-compact {
    background-color: #f5f5f5;
    padding: 2rem;
    border-left: 4px solid #d4af37;
}

.service-compact h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-compact p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
    font-family: 'Arial', sans-serif;
}

.service-compact .service-price {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.methodology-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.methodology-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.methodology-content {
    flex: 1.3;
}

.methodology-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.methodology-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.methodology-list {
    list-style: none;
    margin: 2rem 0;
}

.methodology-list li {
    font-size: 1rem;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.methodology-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.methodology-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.trust-indicators {
    padding: 4rem 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 4rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.trust-item p {
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    color: #ccc;
}

.main-footer {
    background-color: #0f0f0f;
    color: #999;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-references {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references ol {
    margin-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

.footer-references ol li a {
    color: #d4af37;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #d4af37;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 1024px) {
    .intro-layout,
    .methodology-split,
    .services-layout {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

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

    .insight-card {
        min-width: 100%;
    }

    .hero-magazine {
        height: 400px;
    }

    .hero-overlay {
        padding: 2rem 1rem;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}