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

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

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

/* Header Styles */
.main-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.site-logo {
    font-size: 1.5rem;
    margin: 0;
}

.site-logo a {
    color: #fff;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-decoration: none !important;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.category-card * {
    text-decoration: none !important;
}

.category-card a {
    text-decoration: none !important;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
    text-decoration: none !important;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card h3 {
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none !important;
}

.category-card h3 a {
    color: #1f2937;
    text-decoration: none !important;
}

.category-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    text-decoration: none !important;
}

.category-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none !important;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-link {
    color: #764ba2;
}

/* Category-specific styles */
.category-card.category-power {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left: 4px solid #e74c3c;
}

.category-card.category-power .category-icon {
    color: #e74c3c;
}

.category-card.category-power .category-link {
    color: #e74c3c;
}

.category-card.category-power:hover .category-link {
    color: #c0392b;
}

.category-card.category-natural-gas {
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    border-left: 4px solid #f39c12;
}

.category-card.category-natural-gas .category-icon {
    color: #f39c12;
}

.category-card.category-natural-gas .category-link {
    color: #f39c12;
}

.category-card.category-natural-gas:hover .category-link {
    color: #e67e22;
}

.category-card.category-internet {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-left: 4px solid #3498db;
}

.category-card.category-internet .category-icon {
    color: #3498db;
}

.category-card.category-internet .category-link {
    color: #3498db;
}

.category-card.category-internet:hover .category-link {
    color: #2980b9;
}

.category-card.category-water {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border-left: 4px solid #16a085;
}

.category-card.category-water .category-icon {
    color: #16a085;
}

.category-card.category-water .category-link {
    color: #16a085;
}

.category-card.category-water:hover .category-link {
    color: #138d75;
}

.category-cards-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.category-cards-section h2 {
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.category-cards-section .section-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
}

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

/* Outages List */
.outages-list {
    display: grid;
    gap: 1.5rem;
}

.outage-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.outage-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.outage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
}

.category-power {
    background-color: #e74c3c;
}

.category-natural_gas {
    background-color: #f39c12;
}

.category-internet {
    background-color: #3498db;
}

.category-water {
    background-color: #16a085;
}

.outage-date {
    color: #666;
    font-size: 0.9rem;
}

.outage-item h2, .outage-item h3 {
    margin-bottom: 0.5rem;
}

.outage-item h2 a, .outage-item h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.outage-item h2 a:hover, .outage-item h3 a:hover {
    color: #3498db;
}

.outage-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.outage-excerpt {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-card h3 {
    margin-bottom: 0.5rem;
}

.city-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.city-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Outage Detail */
.outage-detail {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.outage-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.outage-detail-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #2c3e50;
}

.outage-summary {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.outage-content {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-part {
    margin-bottom: 1rem;
}

.read-more-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #2980b9;
}

.outage-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.related-links h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.related-outages {
    list-style: none;
}

.related-outages li {
    margin-bottom: 0.5rem;
}

.related-outages a {
    color: #3498db;
    text-decoration: none;
}

.related-outages a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Footer bottom links */
.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .outage-detail-header h1 {
        font-size: 1.8rem;
    }
    
    .outage-detail {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
}

/* SEO and Accessibility */
a:focus, button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* ============================================
   Search Section - Modern Clean Design
   ============================================ */
.search-section {
    background: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 20px !important;
    margin-bottom: 3rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #f0f0f0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.search-section h2 {
    margin-bottom: 2rem !important;
    color: #2c3e50 !important;
    font-size: 1.75rem !important;
    text-align: left !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.search-form {
    width: 100%;
    display: block;
}

.search-filters {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: start !important;
    width: 100% !important;
}

.filter-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    position: relative !important;
}

.filter-label {
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.2px !important;
    display: block !important;
    height: 20px !important;
    line-height: 20px !important;
}

.filter-hint {
    display: block !important;
    margin-top: 0.5rem !important;
    font-size: 0.85rem !important;
    color: #999 !important;
    font-style: italic !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 0.25rem !important;
}

.filter-select:not(:disabled) ~ .filter-hint {
    display: none !important;
}

.filter-select {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
    color: #2c3e50 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.875rem center !important;
    background-size: 14px 14px !important;
    padding-right: 2.5rem !important;
    min-height: 48px !important;
    height: 48px !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
}

.filter-select:focus {
    outline: none !important;
    border-color: #667eea !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

.filter-select:hover:not(:disabled) {
    border-color: #b0b0b0 !important;
    background-color: #fafafa !important;
}

.filter-select:disabled {
    background-color: #f5f5f5 !important;
    border-color: #e8e8e8 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ccc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.filter-select option {
    padding: 0.75rem !important;
    background-color: #ffffff !important;
    color: #2c3e50 !important;
    font-size: 1rem !important;
}

.filter-select option:checked {
    background-color: #667eea !important;
    color: #ffffff !important;
}

.filter-actions {
    display: flex !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.filter-actions .btn-search-modern {
    margin-top: 20px !important;
}

.btn-search-modern {
    width: 100% !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
}

.btn-search-modern:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

.btn-search-modern:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3) !important;
}

.btn-search-modern svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    flex-shrink: 0 !important;
}

/* Search Results */
.search-results {
    margin-bottom: 3rem;
}

.search-results h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
}

.error-message {
    text-align: center;
    padding: 1rem;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c33;
}

/* Content Page Styles */
.content-page {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.content-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.content-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

.content-body {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

.content-intro {
    margin-bottom: 2.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-section p {
    margin-bottom: 1.25rem;
    color: #555;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.content-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.disclaimer {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 1rem;
}

/* Read More Section */
.content-more {
    margin-top: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.content-more-blurred {
    filter: blur(4px) !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    user-select: none !important;
    max-height: 600px !important;
    overflow: hidden !important;
    position: relative;
}

.content-more-blurred::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
    z-index: 1;
}

.content-more-expanded {
    filter: blur(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    user-select: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.read-more-container {
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    position: relative;
    z-index: 10;
}

.btn-read-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-block;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-read-more:active {
    transform: translateY(0);
}

.btn-read-more.expanded {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.btn-read-more.expanded:hover {
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

/* Responsive Form */
@media (max-width: 768px) {
    .search-filters {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .filter-group {
        margin-bottom: 0;
    }
    
    .search-section {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .search-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-select {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
        padding-right: 2.25rem;
    }
    
    .btn-search-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .content-page {
        padding: 1.5rem;
    }
    
    .content-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
}

/* SEO Content Section */
.seo-content-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.seo-content h4 {
    font-size: 1.25rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.seo-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.seo-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #444;
}

.seo-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.search-description,
.section-description {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Print Styles */
@media print {
    .main-header, .main-footer, .read-more, .read-more-btn, .search-section {
        display: none;
    }
    
    .outage-content .hidden-content {
        display: block !important;
    }
}

/* Provider Box Styles */
.provider-box {
    background: #eef2f5;
    border-left: 5px solid #2c3e50;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.provider-box h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.provider-box.warning {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.provider-box ul {
    margin-bottom: 0;
}

.provider-box li {
    margin-bottom: 8px;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Content Disclaimer Footer */
.content-disclaimer {
    margin-top: 30px;
    font-size: 0.85em;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Emergency Box Styles (for Natural Gas) */
.emergency-box {
    background: #fff5f5;
    border-left: 5px solid #e53e3e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.emergency-box h3 {
    margin-top: 0;
    color: #c53030;
}

/* Safety Box Styles */
.safety-box {
    background: #fdfcfb;
    padding: 15px;
    border: 1px dashed #d6d6d6;
    margin: 20px 0;
}

/* FAQ Card Styles */
.faq-card {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #2c3e50;
}

.faq-card strong {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-card p {
    margin: 0;
}

/* Water Utility Box Styles */
.water-utility-box {
    background: #f0f7ff;
    border-left: 5px solid #0077be;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.water-utility-box h3 {
    margin-top: 0;
    color: #005a91;
}

.water-utility-box .pro-tip {
    background: #fff;
    padding: 10px;
    border: 1px solid #cce5ff;
    border-radius: 5px;
    margin-top: 10px;
}

/* Boil Water Advisory Box Styles */
.boil-water-box {
    background: #fffdf0;
    padding: 20px;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    margin: 20px 0;
}

.boil-water-box h2 {
    color: #856404;
}

/* Check List Styles */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
}

/* ISP Expert Box Styles */
.isp-expert-box {
    background: #f8fbff;
    border: 1px solid #d1e3f8;
    border-left: 6px solid #1a73e8;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
}

.isp-expert-box h3 {
    margin-top: 0;
    color: #1a73e8;
    display: flex;
    align-items: center;
}

.isp-expert-box .technical-diagnostic {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #e0e0e0;
}

/* Grid Layout for Internet Outage Causes */
.cause-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.cause-grid-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.cause-grid-item strong {
    display: block;
    margin-bottom: 8px;
}

.cause-grid-item p {
    font-size: 0.9em;
    margin: 0;
}

/* Connection Types Box */
.connection-types-box {
    background: #fff9e6;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ffeeba;
    margin-top: 30px;
}

/* Troubleshooting Guide */
.troubleshooting-list {
    line-height: 2;
}

/* FAQ Item Styles for Internet */
.faq-item-internet {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

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

.faq-item-internet h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .cause-grid {
        grid-template-columns: 1fr;
    }
}

/* States Grid and Cards */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.states-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.states-section h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.states-section .section-description {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.state-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.state-card h3 {
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.state-card h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.state-card h3 a:hover {
    color: #667eea;
}

.state-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .states-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .states-section h2 {
        font-size: 1.75rem;
    }
}

/* State Info Section */
.state-info-section,
.state-category-info {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.state-category-content {
    margin: 3rem 0;
}

.state-category-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.state-info-section h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.state-info-content {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.state-info-content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cities-section {
    margin-top: 3rem;
}

.cities-section h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cities-section .section-description {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.city-card h3 {
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.city-card h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-card h3 a:hover {
    color: #667eea;
}

.city-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .state-info-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .state-info-section h2 {
        font-size: 1.75rem;
    }
    
    .state-info-content h3 {
        font-size: 1.25rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-section h2 {
        font-size: 1.75rem;
    }
}

/* Outage Content Images */
.outage-content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.outage-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .outage-content-image {
        margin: 20px 0;
    }
}

/* Latest Category Reports - Featured Cards */
.latest-category-reports {
    margin: 4rem 0;
}

.latest-category-reports h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.latest-category-reports .section-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-featured-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.category-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-featured-card:hover .featured-image-wrapper img {
    transform: scale(1.05);
}

.featured-image-wrapper .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.featured-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.featured-date {
    font-weight: 600;
    color: #1f2937;
}

.featured-location {
    color: #6b7280;
}

.featured-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.featured-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h3 a:hover {
    color: #667eea;
}

.featured-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.featured-content .btn-primary {
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
}

.featured-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: auto;
}

.last-updated {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 768px) {
    .category-featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .latest-category-reports h2 {
        font-size: 2rem;
    }
    
    .featured-image-wrapper {
        height: 180px;
    }
}

/* Outage content image: responsive */
.outage-content-image{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.outage-content-image img{
  display: block;     /* alt boşlukları engeller */
  width: 100%;        /* container'a uyar */
  max-width: 100%;
  height: auto;       /* oranı korur */
  object-fit: cover;  /* istersen contain yap */
}

