/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2C3E3A;
    background-color: #F5F1E8;
}

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

/* Header Styles */
.header {
    background-color: #F5F1E8;
    padding: 20px 0;
    border-bottom: 1px solid #E8E1D4;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

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

.logo {
    width: 48px;
    height: 48px;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #0D4F4C;
    line-height: 1.2;
    text-decoration: none;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

.tagline {
    font-size: 14px;
    color: #6B7280;
    margin-top: 2px;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F1E8 0%, #EDE6D3 100%);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0D4F4C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #F4A261;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    margin-top: 4px;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 40px;
    line-height: 1.2;
}

section {
    padding: 80px 0;
    text-align: center;
}

section .container > * {
    text-align: center;
}

/* Exceptions for sections that should not be centered */
.header,
.contacts,
.footer {
    text-align: left;
}

.header .container > *,
.contacts .container > *,
.footer .container > * {
    text-align: left;
}

/* News Section */
.latest-news {
    background-color: #FFFFFF;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.news-card {
    background-color: #F5F1E8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image-placeholder {
    height: 200px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 14px;
}

.news-card.featured .news-image-placeholder {
    height: 300px;
}

.news-content {
    padding: 24px;
}

.news-category {
    display: inline-block;
    background-color: #F4A261;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card.featured h3 {
    font-size: 24px;
}

.news-card p {
    color: #4A5568;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-date {
    font-size: 12px;
    color: #6B7280;
}

/* Market Analysis */
.market-analysis {
    background-color: #F5F1E8;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.analysis-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.analysis-text p {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 32px;
    line-height: 1.5;
}

.key-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    text-align: left;
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #F4A261;
    line-height: 1.2;
}

.metric-label {
    font-size: 14px;
    color: #6B7280;
    margin-top: 4px;
}

.analysis-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Founder Interviews */
.founder-interviews {
    background-color: #FFFFFF;
}

.interview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.interview-card {
    background-color: #F5F1E8;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.founder-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interview-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 16px;
    line-height: 1.2;
}

.interview-content p {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 16px;
    line-height: 1.5;
    font-style: italic;
}

.interview-tag {
    display: inline-block;
    background-color: #0D4F4C;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Policy Tracking */
.policy-tracking {
    background-color: #F5F1E8;
}

.policy-updates {
    max-width: 800px;
    margin: 0 auto;
}

.policy-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #E8E1D4;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-date {
    flex-shrink: 0;
    width: 80px;
    font-size: 12px;
    font-weight: 600;
    color: #F4A261;
    text-transform: uppercase;
}

.policy-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 8px;
    line-height: 1.2;
}

.policy-content p {
    color: #4A5568;
    line-height: 1.5;
}

/* Products Section */
.products {
    background-color: #FFFFFF;
}

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

.product-card {
    background-color: #F5F1E8;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #0D4F4C;
    transform: translateY(-4px);
}

.product-card.featured-product {
    border-color: #F4A261;
    background: linear-gradient(135deg, #F5F1E8 0%, #F9F5ED 100%);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F4A261;
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-card p {
    color: #4A5568;
    margin-bottom: 24px;
    line-height: 1.5;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #F4A261;
    margin-bottom: 24px;
}

.cta-button {
    background-color: #0D4F4C;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background-color: #0A3E3B;
    transform: translateY(-2px);
}

/* Data Reports */
.data-reports {
    background-color: #F5F1E8;
}

.reports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.reports-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.reports-text p {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 32px;
    line-height: 1.5;
}

.reports-features {
    list-style: none;
}

.reports-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #4A5568;
    line-height: 1.5;
}

.reports-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F4A261;
    font-weight: 600;
}

.reports-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contacts */
.contacts {
    background-color: #FFFFFF;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #F5F1E8;
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-details p {
    color: #4A5568;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #0D4F4C;
    color: #FFFFFF;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
}

.footer-description {
    color: #B0BEC5;
    line-height: 1.5;
}

.footer-nav-section {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-grid {
    display: flex;
    gap: 48px;
}

.nav-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.nav-column a {
    display: block;
    color: #B0BEC5;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-column a:hover {
    color: #F4A261;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #1A5A56;
    text-align: center;
    color: #B0BEC5;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .analysis-content,
    .reports-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .key-metrics {
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav-section {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-nav-grid {
        justify-content: center;
        gap: 32px;
    }
    
    .policy-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .policy-date {
        width: auto;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-nav-grid {
        flex-direction: column;
        gap: 24px;
    }
}