/* --- Global & Typography for News Site --- */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light, clean background */
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif; /* Serif font for authority */
    color: #0d47a1; /* Deep Blue - Trust and professionalism */
}

.promo-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header Section --- */
.promo-header {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 4px solid #ff7300; /* Classic News Red Accent */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.promo-header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

.promo-header p {
    font-size: 1.3em;
    color: #555;
    font-weight: 400;
}

/* --- Credibility & Stats Grid --- */
.credibility-pitch {
    text-align: center;
    padding: 50px 0 30px;
}

.intro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #ff5900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.8em;
    color: #cc0000; /* Red for high impact numbers */
    margin: 0 0 5px 0;
}

.stat-card p {
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    font-size: 0.9em;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 60px 0;
}

/* --- Advertising Opportunities --- */
.opportunity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.opportunity-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.opportunity-card h3 {
    font-size: 1.6em;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.features-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95em;
}

.features-list li::before {
    content: '•';
    color: #0d47a1; 
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* --- Call to Action --- */
.contact-cta {
    text-align: center;
    background-color: #e3f2fd; /* Lightest Blue */
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #bbdefb;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    margin: 15px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.1em;
}

.download-btn {
    background-color: #cc0000; /* News Red */
    color: white;
}

.download-btn:hover {
    background-color: #a00000;
    transform: scale(1.02);
}

.contact-btn {
    background-color: #0d47a1; /* Deep Blue */
    color: white;
}

.contact-btn:hover {
    background-color: #093175;
    transform: scale(1.02);
}









/* --- Share Section (Standalone Share Buttons) --- */
/* The HTML places the share-container outside the article-container and before the footer. */
.share-container {
    max-width: 850px;
    margin: 20px auto 40px auto;
    padding: 10px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* Added a label for clarity in HTML */
    border-top: 1px solid #e0e0e0; 
    padding-top: 25px;
}

.share-container .social-links {
    display: flex;
    gap: 15px;
}

/* Share Icon Styling */
.share-container .social-links a { 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-container .social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.share-container .fa-twitter {
    background-color: #1da1f2;
}
.share-container .fa-facebook-f {
    background-color: #1877f2;
}
.share-container .fa-instagram {
    /* Instagram Gradient */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* --- Footer (Multi-Column Layout) --- */
footer {
    /* Removed fixed/sticky positioning for traditional multi-column footer */
    position: relative; 
    text-align: left; /* Aligned left for multi-column content */
    padding: 40px 0 0 0; 
    color: #444444; /* Darker text for footer content */
    font-size: 0.9rem;
    background-color: #ffffff;
    border-top: 4px solid #ff5500; /* Strong accent line */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: space-between; /* Distributes columns */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px;
}

.footer-column {
    flex-basis: 250px; /* Base width for each column */
    flex-grow: 1; /* Allows columns to grow */
    padding: 10px 0;
}

.footer-column h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p a {
    color: #444444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ff8000; /* Orange Accent on hover */
    text-decoration: underline;
}

/* Footer Social Links (Separate Styling for Footer) */
.footer-column .social-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-column .social-links a {
    width: 30px;
    height: 30px;
    background-color: #e0e0e0; /* Light gray background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e; /* Dark icon color */
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column .social-links a:hover {
    background-color: #ff7700; /* Orange Accent on hover */
    color: white;
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding: 15px 30px;
    font-size: 0.8rem;
    color: #8c8c8c;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f8f8; /* Slightly different background for bottom bar */
}


/* --- Responsive Styles (Improved Layout) --- */
@media (max-width: 992px) {
    .article-container {
        max-width: 95%;
        margin: 30px auto;
        padding: 30px;
    }
    .footer-container {
        justify-content: center;
        text-align: center;
    }
    .footer-column {
        flex-basis: 45%; /* Two columns on medium screens */
    }
    .footer-column .social-links {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    .site-nav a {
        margin: 5px;
    }
    #blog-title {
        font-size: 2rem;
    }
    .footer-column {
        flex-basis: 100%; /* Single column on small screens */
    }
    .footer-column .social-links {
        justify-content: flex-start; /* Back to left alignment for single column */
    }
    .share-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }
    .share-container .social-links {
        margin-top: 10px;
    }
}













