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

:root {
    --primary-color: #2c5282;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #555;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    border-radius: 50%;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.primary-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-text-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.hero-text-wrapper h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-color);
}

/* Expert Interview */
.expert-interview {
    padding: 80px 0;
    background: #ffffff;
}

.interview-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.interview-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.interview-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.expert-title {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.interview-qa {
    margin-top: 25px;
}

.question {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 17px;
}

.answer {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* Recent Posts */
.recent-posts {
    padding: 80px 0;
    background: var(--light-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.post-content p {
    font-size: 15px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Report Section */
.report-section {
    padding: 80px 0;
    background: #ffffff;
}

.report-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.report-wrapper p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 17px;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-color);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    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;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #ffffff;
}

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

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

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

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

.cookie-text h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-color);
}

.cookie-text a {
    color: var(--secondary-color);
}

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

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

.cookie-btn.accept-all {
    background: var(--secondary-color);
    color: #ffffff;
}

.cookie-btn.accept-all:hover {
    background: var(--primary-color);
}

.cookie-btn.customize {
    background: #ffffff;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

.cookie-btn.customize:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cookie-btn.decline {
    background: #ecf0f1;
    color: var(--text-color);
}

.cookie-btn.decline:hover {
    background: #bdc3c7;
}

/* Blog Post Styles */
.blog-post {
    background: #ffffff;
}

.post-header {
    background: var(--light-bg);
    padding: 60px 0 40px;
}

.post-header h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #7f8c8d;
    font-size: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.post-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.post-body {
    max-width: 800px;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.post-body h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.post-tags h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.post-tags a {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-color);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--secondary-color);
}

.related-posts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-posts a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.related-posts a:hover {
    transform: translateX(5px);
}

.related-posts img {
    border-radius: 6px;
}

.related-posts span {
    font-size: 15px;
    line-height: 1.4;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--secondary-color);
}

.cta-widget {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
}

.cta-widget h3 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-button-small {
    display: inline-block;
    background: #ffffff;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .primary-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text-wrapper h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .interview-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-text-wrapper h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .post-header h1 {
        font-size: 32px;
    }
}