/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* --- Theme Variables --- */
:root {
    /* Dark Theme (Default if no data-theme="light" is present or data-theme="dark") */
    --primary-bg: #1a1a1a;
    --secondary-bg: #222222;
    --text-color: #f0f0f0;
    --light-text: #b0b0b0;
    --accent-color: #e74c3c;
    --border-color: #333;
    --input-bg: #1a1a1a; /* For search bar input */
    --button-text-color: #ffffff; /* For search button */
}

/* This is the corrected part: Use attribute selector instead of class */
body[data-theme="light"] {
    /* Light Theme Overrides */
    --primary-bg: #f0f2f5;
    --secondary-bg: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --accent-color: #e74c3c; /* Keep accent color consistent */
    --border-color: #e0e0e0;
    --input-bg: #ffffff;
    --button-text-color: #ffffff;
}

/* --- Base Styles (using variables) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for theme change */
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6a5a; /* Lighter red on hover */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--padding-base, 15px); /* Use a default if var not defined */
}

/* Header */
.header {
    background-color: var(--secondary-bg);
    padding: var(--padding-base, 15px) 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--padding-base, 15px);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--padding-base, 15px);
    transition: border-color 0.3s ease;
}

/* MODIFIED .logo a style */
.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 2em; /* This will now primarily affect .site-name if it were text, but we're moving to flex for structure */
    font-weight: 700;
    color: var(--text-color); /* This will apply to .site-name and .site-tagline */
    text-decoration: none; /* Ensure no underline on the logo link */
    display: flex; /* Make the logo link a flex container */
    align-items: center; /* Vertically align logo and branding */
    gap: 10px; /* Space between logo image and text branding */
    transition: color 0.3s ease;
}

.site-logo {
    height: 100px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.site-branding {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2em; /* Matches previous logo text size */
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap; /* Prevent site name from wrapping */
}

.site-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8em;
    color: var(--light-text); /* Lighter text for tagline */
    white-space: nowrap; /* Prevent tagline from wrapping */
}


.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 1.2em;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-color);
}

.lang-switcher a {
    color: var(--light-text);
    font-size: 0.9em;
    border: 1px solid var(--light-text);
    padding: 5px 10px;
    border-radius: var(--border-radius, 5px);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.lang-switcher a.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--button-text-color);
}

.search-icon button,
.theme-toggle button { /* Apply styles to theme toggle button */
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px; /* Add padding for easier click */
}

.search-icon button:hover,
.theme-toggle button:hover {
    color: var(--text-color);
}

.search-bar {
    padding: 10px 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.search-bar form {
    display: flex;
    width: 100%;
    max-width: 600px;
    background-color: var(--input-bg); /* Use input-bg variable */
    border-radius: var(--border-radius, 5px);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.search-bar input[type="text"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--input-bg); /* Use input-bg variable */
    color: var(--text-color);
    border-radius: var(--border-radius, 5px) 0 0 var(--border-radius, 5px);
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.search-bar button {
    padding: 10px 15px;
    background-color: var(--accent-color);
    border: none;
    color: var(--button-text-color); /* Use button-text-color variable */
    cursor: pointer;
    border-radius: 0 var(--border-radius, 5px) var(--border-radius, 5px) 0;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #ff6a5a;
}


/* Breaking News Ticker */
.breaking-news {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px var(--padding-base, 15px);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.breaking-news span {
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.news-ticker-wrap {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 20px; /* Adjust height as needed */
}

.news-ticker {
    white-space: nowrap;
    position: absolute;
    animation: ticker 25s linear infinite; /* Increased duration for smoother scroll */
}
.news-ticker a {
    color: var(--text-color); /* Make links white */
    margin-right: 20px; /* Space between items */
    display: inline-block;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.breaking-news .advertisement-text {
    margin-left: auto;
    font-size: 0.9em;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Main Navigation (Categories) */
.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: var(--padding-base, 15px) 0;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.main-nav ul li a {
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Main Content Layout */
.main-content {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px;
    padding: 30px 0;
}

.main-content .left-col {
    flex: 3; /* Takes 3 parts */
    min-width: 65%; /* Ensure it doesn't get too small */
}

.main-content .right-col {
    flex: 1; /* Takes 1 part */
    min-width: 300px; /* Minimum width for sidebar */
}

/* Featured Article */
.featured-article {
    background-color: var(--secondary-bg);
    border-radius: var(--border-radius, 5px);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.featured-article img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.featured-article-content {
    padding: calc(var(--padding-base, 15px) * 1.5);
}

.featured-article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--text-color); /* Use variable */
    transition: color 0.3s ease;
}

.featured-article-content p {
    color: var(--light-text);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.article-meta {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.article-meta img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.article-meta .author-name {
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Category Sections */
.category-section {
    margin-bottom: 30px;
}

.category-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--text-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.article-card {
    background-color: var(--secondary-bg);
    border-radius: var(--border-radius, 5px);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: var(--padding-base, 15px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.3;
    flex-grow: 1; /* Allows title to take available space */
    color: var(--text-color); /* Use variable */
    transition: color 0.3s ease;
}

.article-card-content .article-meta {
    margin-top: 10px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--secondary-bg);
    border-radius: var(--border-radius, 5px);
    padding: var(--padding-base, 15px);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sidebar-widget h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Live Stream Widget */
.live-stream-widget .live-indicator {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8em;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.live-stream-widget .video-embed {
    width: 100%;
    height: 200px; /* Fixed height for video */
    background-color: black; /* Placeholder background */
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}
.live-stream-widget .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.live-stream-widget h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-color); /* Use variable */
    transition: color 0.3s ease;
}

/* Trending Widget */
.trending-widget .trend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trending-widget .trend-list li a {
    background-color: var(--primary-bg);
    color: var(--light-text);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.trending-widget .trend-list li a:hover {
    background-color: var(--accent-color);
    color: var(--button-text-color);
}

/* Most Read Widget */
.most-read-widget ol {
    list-style: decimal;
    padding-left: 20px;
}

.most-read-widget ol li {
    margin-bottom: 10px;
    font-size: 0.95em;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}
.most-read-widget ol li a {
    color: var(--light-text);
    transition: color 0.3s ease;
}
.most-read-widget ol li a:hover {
    color: var(--accent-color);
}

.most-read-widget ol li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Advertisement */
.ad-slot {
    background-color: var(--primary-bg);
    border: 1px dashed var(--border-color);
    padding: var(--padding-base, 15px);
    text-align: center;
    color: var(--light-text);
    font-size: 0.9em;
    margin-bottom: 30px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Important for Google Ads */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.ad-slot img {
    max-width: 100%;
    height: auto;
}
.ad-slot iframe {
    max-width: 100%; /* Ensure iframes don't overflow */
    height: auto;
}

/* Latest Updates Widget (small article list) */
.latest-updates-widget .article-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.latest-updates-widget .article-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.latest-updates-widget .article-list li .icon {
    font-size: 1.5em;
    color: var(--accent-color);
}

.latest-updates-widget .article-list li .info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 5px;
}
.latest-updates-widget .article-list li .info h5 a {
    color: var(--text-color);
    transition: color 0.3s ease;
}
.latest-updates-widget .article-list li .info h5 a:hover {
    color: var(--accent-color);
}

.latest-updates-widget .article-list li .info span {
    font-size: 0.8em;
    color: var(--light-text);
    transition: color 0.3s ease;
}

/* Article Detail Page */
.article-detail-container {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: var(--border-radius, 5px);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.article-detail-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color); /* Use variable */
    transition: color 0.3s ease;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.article-detail-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.article-detail-image {
    margin-bottom: 30px;
}

.article-detail-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.article-detail-content p {
    margin-bottom: 1em;
}

.article-detail-content img {
    margin: 20px 0;
    display: block;
    max-width: 100%;
    height: auto;
}

.social-share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease;
}

.social-share-buttons span {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color); /* Use variable */
    transition: color 0.3s ease;
}

.social-share-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius, 5px);
    color: white;
    margin: 5px;
    font-size: 0.9em;
}

.social-share-buttons a i {
    margin-right: 8px;
}

.share-facebook { background-color: #3b5998; }
.share-twitter { background-color: #1da1f2; }
.share-linkedin { background-color: #0077b5; }
.share-whatsapp { background-color: #25d366; }

.social-share-buttons a:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    padding: 30px 0;
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
    font-size: 0.9em;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--accent-color);
}

/* Category and Search Pages */
.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.no-results {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2em;
    color: var(--light-text);
    transition: color 0.3s ease;
}
.no-results a {
    display: inline-block;
    margin-top: 20px;
    background-color: var(--accent-color);
    color: var(--button-text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius, 5px);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.no-results a:hover {
    background-color: #ff6a5a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .main-content .left-col,
    .main-content .right-col {
        min-width: 100%;
        flex: none;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .featured-article img {
        height: 250px;
    }

    .featured-article-content h2 {
        font-size: 1.5em;
    }

    .category-section h3,
    .page-title {
        font-size: 2em;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .article-detail-container h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .header-top {
        align-items: center;
    }
    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    .social-icons {
        margin-right: auto; /* Push icons to the left */
        margin-top: 10px;
    }
    .lang-switcher, .search-icon, .theme-toggle { /* Include theme-toggle */
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    /* Responsive adjustment for branding to prevent overlap */
    .logo a {
        flex-direction: column; /* Stack logo and branding vertically */
        align-items: flex-start;
        gap: 5px;
    }
    .site-name {
        font-size: 1.5em; /* Smaller on small screens */
    }
    .site-tagline {
        font-size: 0.7em;
    }


    .breaking-news {
        flex-direction: column;
        align-items: flex-start;
    }
    .breaking-news span {
        margin-bottom: 5px;
    }
    .news-ticker-wrap {
        width: 100%;
    }

    .main-nav ul {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px; /* For scrollbar */
    }
    .main-nav ul::-webkit-scrollbar {
        height: 5px;
    }
    .main-nav ul::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 5px;
    }
    .main-nav ul::-webkit-scrollbar-track {
        background: var(--border-color);
    }
    .main-nav ul li {
        flex-shrink: 0;
    }

    .featured-article img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.8em;
    }

    .social-icons a {
        font-size: 1em;
        margin-left: 10px;
    }

    .lang-switcher a {
        padding: 3px 8px;
    }

    .featured-article-content {
        padding: var(--padding-base, 15px);
    }

    .featured-article-content h2 {
        font-size: 1.3em;
    }

    .article-card-content h4 {
        font-size: 1em;
    }

    .sidebar-widget {
        padding: var(--padding-base, 15px);
    }

    .article-detail-container h1 {
        font-size: 1.5em;
    }

    .article-detail-content {
        font-size: 1em;
    }

    .social-share-buttons a {
        padding: 8px 12px;
        font-size: 0.8em;
    }
}
/* Add these styles to the end of your style.css file */

.contact-info-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.contact-info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-section p {
    color: var(--light-text);
    margin-bottom: 10px;
}

.contact-info-section p strong {
    color: var(--text-color);
}

.contact-info-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-address {
    font-style: normal; /* Override default italic for address tag */
    color: var(--light-text);
    line-height: 1.6;
}

.social-media-contact .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media-contact .social-links li a {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-bg);
    color: var(--light-text);
    padding: 10px 15px;
    border-radius: var(--border-radius, 5px);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-media-contact .social-links li a:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.social-media-contact .social-links li a i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Specific colors for social icons if desired */
.social-media-contact .social-links li a .fa-facebook-f { color: #3b5998; }
.social-media-contact .social-links li a:hover .fa-facebook-f { color: white; }

.social-media-contact .social-links li a .fa-youtube { color: #FF0000; }
.social-media-contact .social-links li a:hover .fa-youtube { color: white; }

.social-media-contact .social-links li a .fa-twitter { color: #1da1f2; }
.social-media-contact .social-links li a:hover .fa-twitter { color: white; }

.social-media-contact .social-links li a .fa-linkedin-in { color: #0077b5; }
.social-media-contact .social-links li a:hover .fa-linkedin-in { color: white; }

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-info-section h3 {
        font-size: 1.4em;
    }
    .social-media-contact .social-links {
        flex-direction: column; /* Stack social links vertically on small screens */
        gap: 10px;
    }
    .social-media-contact .social-links li {
        width: 100%; /* Make each link take full width */
    }
    .social-media-contact .social-links li a {
        justify-content: center; /* Center the content inside the link */
    }
}
.contact-info-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-info-section form input,
.contact-info-section form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background: #fff;
}

.contact-info-section form button {
    padding: 12px;
    background: var(--admin-accent-color, #e74c3c);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-info-section form button:hover {
    background: #c0392b;
}
