/*
Theme Name: Steady Fleet Logistics
Theme URI: https://steadyfleetlogistics.com
Author: Steady Fleet Logistics Team
Author URI: https://steadyfleetlogistics.com
Description: A professional WordPress theme designed specifically for trucking and transportation companies. Features modern design, mobile responsiveness, and business-focused layouts perfect for logistics companies.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steadyfleet
Tags: business, transportation, trucking, logistics, responsive, modern, professional
*/

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

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a365d;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#site-navigation {
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.site-logo:hover {
    color: #ffd700;
    transition: color 0.3s ease;
}

/* Navigation */
.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

/* Submenu Styles */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #1a365d;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 0.4rem 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0;
}

.main-navigation li:hover .sub-menu {
    display: block;
    animation: slideDown 0.15s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navigation .sub-menu li {
    margin: 0;
    padding: 0;
}

.main-navigation .sub-menu a {
    padding: 0.5rem 0.8rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.15s ease;
    display: block;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.main-navigation .sub-menu a:hover {
    background-color: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    padding-left: 1rem;
}

.main-navigation .sub-menu li:first-child a {
    border-radius: 6px 6px 0 0;
}

.main-navigation .sub-menu li:last-child a {
    border-radius: 0 0 6px 6px;
}

/* Arrow indicator for parent menu items */
.main-navigation .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.4rem;
    transition: transform 0.15s ease;
    opacity: 0.8;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Ensure parent menu items don't shift when submenu appears */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .menu-item-has-children > a {
    position: relative;
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(45, 90, 135, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f7fafc" width="1200" height="600"/><g fill="%23e2e8f0"><circle cx="200" cy="150" r="3"/><circle cx="400" cy="100" r="2"/><circle cx="600" cy="200" r="4"/><circle cx="800" cy="80" r="3"/><circle cx="1000" cy="180" r="2"/></g></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    text-align: center;
}

.hero-truck-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-truck-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-truck-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero-truck-placeholder p {
    font-size: 1rem;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffd700;
    color: #1a365d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a365d;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.2rem;
    overflow: hidden;
}

.about-fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-placeholder {
    text-align: center;
    color: #4a5568;
}

.about-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.about-image-placeholder p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #1a365d;
    color: white;
}

.contact-section p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: #ffd700;
}

/* Footer */
.site-footer {
    background-color: #0f1419;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    color: #a0aec0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a365d;
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: left;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        display: block;
    }
    
    .main-navigation .sub-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.25);
        box-shadow: none;
        margin-left: 0.8rem;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        padding: 0.3rem 0;
    }
    
    .main-navigation li:hover .sub-menu,
    .main-navigation li:focus-within .sub-menu {
        display: block;
        animation: slideDown 0.15s ease-out;
    }
    
    .main-navigation .sub-menu a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.3;
    }
    
    .main-navigation .sub-menu a:hover {
        background-color: rgba(255, 215, 0, 0.12);
        color: #ffd700;
        padding-left: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .about-stats {
        gap: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.25rem;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .about-stats {
        gap: 0.5rem;
    }
}

/* Quote Page Styles */
.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.quote-form-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.form-section h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    color: #1a365d;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: #718096;
    opacity: 1;
}

/* Ensure input text is always visible */
#pickup-address,
#delivery-address {
    color: #1a365d !important;
    background-color: #fff !important;
}

#pickup-address:focus,
#delivery-address:focus {
    color: #1a365d !important;
    background-color: #fff !important;
}

/* Additional input text visibility fixes */
.quote-form input[type="text"] {
    color: #1a365d !important;
    background-color: #fff !important;
}

.quote-form input[type="text"]:focus {
    color: #1a365d !important;
    background-color: #fff !important;
}

/* Ensure placeholder text is visible on quote form */
.quote-form input::placeholder {
    color: #718096 !important;
    opacity: 1 !important;
}

#pickup-address::placeholder,
#delivery-address::placeholder,
#mileage::placeholder {
    color: #718096 !important;
    opacity: 1 !important;
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.address-suggestion {
    padding: 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f7fafc;
    transition: background-color 0.2s ease;
}

.address-suggestion:hover {
    background-color: #f7fafc;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background-color: #ffd700;
    color: #1a365d;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #1a365d;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.quote-results {
    background: #f7fafc;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.quote-results h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-summary {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.quote-item.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    background-color: #f7fafc;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0 0 8px 8px;
}

.quote-item .label {
    font-weight: 600;
    color: #4a5568;
}

.quote-item .value {
    color: #1a365d;
    font-weight: 500;
}

.quote-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
}

.quote-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
}

.quote-info {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-info h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #ffd700;
    color: #1a365d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.5;
}

/* Quote Page Mobile Styles */
@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .quote-results {
        padding: 1.5rem;
    }
    
    .quote-summary {
        padding: 1rem;
    }
    
    .quote-item.total {
        margin: 0 -1rem;
        padding: 1rem;
    }
    
    .quote-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quote-info {
        padding: 1.5rem;
    }
    
    .info-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* WordPress Specific Styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-heading {
    color: #1a365d;
}

.wp-block-button .wp-block-button__link {
    background-color: #ffd700;
    color: #1a365d;
    border-radius: 5px;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-info {
    background: #e6f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.pricing-info p {
    margin: 0;
    color: #1a365d;
    font-weight: 500;
}

.form-help {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-help p {
    margin: 0 0 0.5rem 0;
    color: #1a365d;
    font-weight: 600;
}

.form-help ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #495057;
}

.form-help li {
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

/* Quote Contact Form */
.quote-contact-form {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.quote-contact-form h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.quote-contact-form p {
    color: #495057;
    margin-bottom: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: #1a365d !important;
    background-color: #fff !important;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    color: #1a365d !important;
    background-color: #fff !important;
}

/* Ensure contact form input text is always visible */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form textarea {
    color: #1a365d !important;
    background-color: #fff !important;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="date"]:focus,
.contact-form textarea:focus {
    color: #1a365d !important;
    background-color: #fff !important;
}

.contact-form .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Mobile responsiveness for contact form */
@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .form-actions {
        flex-direction: column;
    }
}

/* Post Styles */
.entry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.entry-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #718096;
    font-size: 0.9rem;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #1a365d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.entry-tags {
    color: #718096;
}

.tags-title {
    font-weight: 600;
    color: #1a365d;
}

/* Archive Styles */
.archive-description {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-title a {
    color: #1a365d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #2d5a87;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-excerpt {
    color: #4a5568;
    margin-bottom: 1rem;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffed4e;
}

.no-posts {
    text-align: center;
    padding: 3rem 0;
    color: #718096;
}


/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #4a5568;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #718096 !important;
    opacity: 1 !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d5a87;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #1a365d;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Content Hub & Blog Styles */
.content-hub-page,
.blog-page {
    padding: 2rem 0;
}

.content-hub-hero,
.blog-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-bottom: 3rem;
}

.content-hub-hero h1,
.blog-hero h1 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.content-hub-hero p,
.blog-hero p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* SEO and Navigation Styles */
.breadcrumbs {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-item {
    margin-right: 10px;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #666;
}

.breadcrumb-item a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.current {
    color: #666;
    font-weight: 500;
}

/* Related Posts Styles */
.related-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.related-posts h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-post {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-post-thumbnail {
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #0073aa;
}

.related-post-meta {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Weekly Insights Single Page Styles */
.weekly-insights-single {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.weekly-insights-single .entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.weekly-insights-single .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.weekly-insights-single .entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.weekly-insights-single .entry-meta i {
    color: #0073aa;
}

.weekly-insights-single .entry-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 0;
    color: #333;
}

.weekly-insights-single .entry-thumbnail {
    margin: 30px 0;
    text-align: center;
}

.weekly-insights-single .entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.weekly-insights-single .entry-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.weekly-insights-single .entry-content h2,
.weekly-insights-single .entry-content h3,
.weekly-insights-single .entry-content h4 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.weekly-insights-single .entry-content p {
    margin-bottom: 20px;
}

.weekly-insights-single .entry-content ul,
.weekly-insights-single .entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.weekly-insights-single .entry-content blockquote {
    border-left: 4px solid #0073aa;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.weekly-insights-single .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.weekly-insights-single .key-takeaway {
    background: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.weekly-insights-single .key-takeaway h4 {
    margin: 0 0 10px 0;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weekly-insights-single .key-takeaway p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Industry News Single Page Styles */
.industry-news-single {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.industry-news-single .entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.industry-news-single .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.industry-news-single .entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.industry-news-single .entry-meta i {
    color: #0073aa;
}

.industry-news-single .entry-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 0;
    color: #333;
}

.industry-news-single .entry-thumbnail {
    margin: 30px 0;
    text-align: center;
}

.industry-news-single .entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.industry-news-single .entry-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.industry-news-single .entry-content h2,
.industry-news-single .entry-content h3,
.industry-news-single .entry-content h4 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.industry-news-single .entry-content p {
    margin-bottom: 20px;
}

.industry-news-single .entry-content ul,
.industry-news-single .entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.industry-news-single .entry-content blockquote {
    border-left: 4px solid #0073aa;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.industry-news-single .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.industry-news-single .source-link {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.industry-news-single .source-link:hover {
    background: #005a87;
    color: white;
}

/* Responsive Design for SEO Elements */
@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-item {
        margin-right: 5px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin-left: 5px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-news-single {
        padding: 20px;
    }
    
    .industry-news-single .entry-title {
        font-size: 24px;
    }
    
    .industry-news-single .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Newsletter Signup */
.newsletter-signup-section,
.newsletter-signup {
    background: #2b6cb0;
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 0.75rem 2rem;
    background: #1a365d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form .btn:hover {
    background: #2c5282;
}

.newsletter-message {
    margin-top: 1rem;
}

.success-message {
    color: #48bb78;
    font-weight: 600;
}

.error-message {
    color: #f56565;
    font-weight: 600;
}

/* Featured Content */
.featured-content {
    margin: 3rem 0;
}

.featured-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured-content .featured-content {
    padding: 1.5rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

.featured-badge {
    background: #2b6cb0;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-title {
    margin-bottom: 1rem;
}

.featured-title a {
    color: #1a365d;
    text-decoration: none;
    font-size: 1.5rem;
}

.featured-title a:hover {
    color: #2b6cb0;
}

.featured-excerpt {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #1a365d;
}

/* Content Categories/Tabs */
.content-categories {
    margin: 3rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.tab-button.active {
    background: #2b6cb0;
    border-color: #2b6cb0;
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

.post-type {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-title {
    margin-bottom: 1rem;
}

.card-title a {
    color: #1a365d;
    text-decoration: none;
    font-size: 1.25rem;
}

.card-title a:hover {
    color: #2b6cb0;
}

.card-excerpt {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-time,
.insight-type,
.source {
    font-size: 0.875rem;
    color: #718096;
    background: #f7fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.key-takeaway {
    font-size: 0.875rem;
    color: #2b6cb0;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Blog Page Specific */
.blog-content {
    margin: 3rem 0;
}

.content-filters {
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.filter-btn.active {
    background: #2b6cb0;
    border-color: #2b6cb0;
    color: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: #1a365d;
    text-decoration: none;
    font-size: 1.25rem;
}

.post-title a:hover {
    color: #2b6cb0;
}

.post-excerpt {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.pagination .current {
    background: #2b6cb0;
    border-color: #2b6cb0;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-hub-hero h1,
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .content-hub-hero p,
    .blog-hero p {
        font-size: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .category-tabs,
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button,
    .filter-btn {
        width: 200px;
        text-align: center;
    }
}