/* homeh1.css - Additional styles for the Kuwait-style page */

.container {
    max-width: 1200px;
    margin: 0 auto; 
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d97706;
    text-decoration: underline;
}

.breadcrumb span {
    color: #334155;
    font-weight: 500;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn i {
    color: #f59e0b;
    font-size: 16px;
    transition: color 0.3s;
}

.action-btn:hover {
    background: #f8fafc;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.action-btn:hover i {
    color: #d97706;
}

/* Location Selector New */
.location-selector-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-info i {
    font-size: 40px;
    color: #ffd700;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.location-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.location-text p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.search-location-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.search-location-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Quick Navigation */
.quick-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-nav-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
}

.quick-nav-btn i {
    color: #f59e0b;
    font-size: 16px;
}

.quick-nav-btn:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

/* Range Selector - Override for this page */
.range-selector {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.range-btn {
    padding: 14px 30px;
    background: white;
    border: 2px solid rgb(83, 104, 5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #334155;
    font-size: 16px;
    font-weight: 600;
    min-width: 140px;
    white-space: nowrap;
}

.range-btn.active {
    background: rgb(83, 104, 5);
    border-color: black;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.range-btn.ramzan-btn {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #f59e0b;
    color: white;
}

.range-btn.ramzan-btn i {
    color: #ffd700;
    margin-right: 8px;
}

.range-btn.ramzan-btn.active {
    background: #f59e0b;
    border-color: white;
}

.range-btn:hover:not(.active) { 
    transform: translateY(-2px); 
}

.range-btn.active:hover {
    transform: translateY(-2px);
}

/* Next Prayer Banner */
.next-prayer-banner {
    background: rgb(83, 104, 5);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 25px 0 35px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.next-prayer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.next-prayer-label {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.next-prayer-time {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.next-prayer-text {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 500;
}

/* Prayer Detail Table */
.prayers-table-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 25px 0;
}

.prayer-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.prayer-detail-table th {
    background: #f8fafc;
    padding: 18px 15px;
    text-align: center !important;
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.prayer-detail-table td {
    padding: 18px 15px;
    font-size: 16px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.prayer-detail-table tr:hover td {
    background: #f8fafc;
}

.prayer-detail-table td:first-child {
    font-weight: 600;
    text-align: center;
    color: #1e293b;
}

.prayer-detail-table td:last-child {
    text-align: center; 
    font-size: 20px; 
    font-weight: 700;
}

html[dir="rtl"] .prayer-detail-table td:last-child {
    text-align: center;
}

.prayer-time { 
    font-weight: 600;
}

/* Calculation Info */
.calculation-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid #e2e8f0;
}

.calculation-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.method-details {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.method-details p {
    margin-bottom: 12px;
    padding-left: 15px; 
}

/* Rak'ahs Info */
.rakahs-info {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid #bae6fd;
}

.rakahs-info h3 { 
    font-weight: 700px;
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.rakahs-info ul {
    list-style: none;
    padding: 0;
}

.rakahs-info li {
    padding: 10px 0;
    color: #334155;
    font-size: 16px;
    border-bottom: 1px dashed #bae6fd;
}

.rakahs-info li:last-child {
    border-bottom: none;
}

.rakahs-info strong { 
    margin-left: 10px;
}

/* Settings Summary */
.settings-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin: 25px 0;
}

.settings-summary p {
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    margin: 0;
    font-size: 14px;
    border-left: 3px solid rgb(83, 104, 5);
    border-right: 3px solid rgb(83, 104, 5);
    transition: transform 0.3s;
}

.settings-summary p:hover {
    transform: translateX(5px);
}

html[dir="rtl"] .settings-summary p:hover {
    transform: translateX(-5px);
}

.settings-summary strong {
    color: #1e293b;
    margin-right: 8px;
}

.settings-link{
    background: #536805;
    border: 2px solid #e2e8f0;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-link:hover { 
    transform: translateY(-2px);
}

/* Embed Section */
.embed-section {
    text-align: center;
    margin: 35px 0 20px;
}

.embed-btn {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.embed-btn i {
    font-size: 20px;
    color: #ffd700;
}

.embed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

/* Week Day Item */
.week-day-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.week-day-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.week-day-header {
    display: flex;
    justify-content: center;
    align-items: center; 
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.3s;
}

.week-day-header:hover {
    background: #f1f5f9;
}

.day-info {
    font-size: 18px;
    color: #1e293b;
    font-weight: 500;
}

.day-info strong {
    color: #f59e0b;
    margin-right: 10px;
    font-size: 20px;
}

.toggle-day-btn {
    background: none;
    border: none;
    color: #f59e0b;
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-day-btn:hover {
    background: rgba(245, 158, 11, 0.15);
    transform: scale(1.1);
}

.week-day-content {
    padding: 25px;
    border-top: 2px solid #e2e8f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq-item {
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #f8fafc;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.faq-item h3:hover {
    color: #f59e0b;
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
    margin-left: 30px;
}

.faq-item ul {
    list-style: none;
    padding: 10px 0 10px 30px;
}

.faq-item li {
    padding: 8px 0;
    color: #475569;
    font-size: 15px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.15);
    border-color: rgb(83, 104, 5);
}

.info-card h3 {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-card h3 i {
    color: #f59e0b;
    font-size: 20px;
}

.info-card .value {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 8px;
}

.info-card .sub-value {
    font-size: 14px;
    color: #64748b;
}

/* Cities List */
.cities-list {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid #e2e8f0;
}

.cities-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.city-link {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    color: #334155;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.city-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.15);
    border-color: rgb(83, 104, 5);
}

.more-cities {
    text-align: center;
    margin-top: 25px;
}

.more-cities-btn {
    background: none;
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-cities-btn:hover {
    border-color: rgb(83, 104, 5);
    color: rgb(83, 104, 5);
    background: #fffbeb;
    transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f59e0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .location-selector-new {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .location-text h2 {
        font-size: 22px;
    }
    
    .search-location-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .quick-nav-btn {
        flex: 0 0 auto;
    }
    
    .range-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .range-btn {
        width: 100%;
        min-width: auto;
    }
    
    .next-prayer-time {
        font-size: 42px;
    }
    
    .prayer-detail-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .prayer-detail-table td:last-child {
        font-size: 16px; 
    }
    
    .settings-summary {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 22px;
    }
    
    .action-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .next-prayer-label {
        font-size: 20px;
    }
    
    .next-prayer-time {
        font-size: 32px;
    }
    
    .next-prayer-text {
        font-size: 16px;
    }
    
    .week-day-header {
        padding: 15px;
    }
    
    .day-info {
        font-size: 15px;
    }
    
    .day-info strong {
        font-size: 16px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RTL Support */
html[dir="rtl"] .prayer-detail-table th {
    text-align: right;
}

html[dir="rtl"] .day-info strong {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .method-details p {
    padding-left: 0;
    padding-right: 15px;
    border-left: none; 
}

html[dir="rtl"] .settings-summary p {
    border-left: none;
    border-right: 3px solid #f59e0b;
    border-left: 3px solid #f59e0b;
}





/* Settings saved message styling */
.settings-saved-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgb(83, 104, 5);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out; 
    font-weight: 500;
    min-width: 250px;
}

.settings-saved-message.show {
    transform: translateX(0);
}

.settings-saved-message .message-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.settings-saved-message i {
    font-size: 24px;
    color: white;
}

/* For mobile */
@media (max-width: 768px) {
    .settings-saved-message {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-400px);
    }
    
    .settings-saved-message.show {
        transform: translateY(0);
    }
}


/* Additional styles for the page */
    .prayer-times-table {
        width: 100%;
        border-collapse: collapse;
    }
    .prayer-times-table th,
    .prayer-times-table td {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
    .prayer-times-table th {
        background-color: #f8fafc;
        font-weight: 600;
        color: #1e293b;
    }
    .prayer-times-table tr:hover {
        background-color: #f8fafc;
    }
    .table-loading {
        text-align: center;
        padding: 40px;
        color: #64748b;
    }
    .spinner {
        border: 3px solid #f3f3f3;
        border-top: 3px solid #f59e0b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto 15px;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    .no-data-message {
        text-align: center;
        padding: 40px;
        color: #64748b;
        font-style: italic;
    }
    .today-row {
        background-color: #fef3c7 !important;
        font-weight: 600;
    }
    .qibla-direction {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        margin-top: 5px;
    }
    .coordinate-value {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
    }
    /* City search results styling */
    .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
    }
    .search-result-item {
        padding: 12px 15px;
        cursor: pointer;
        border-bottom: 1px solid #e2e8f0;
        transition: background 0.2s;
    }
    .search-result-item:hover {
        background: #f1f5f9;
    }
    .search-loading, .no-results {
        padding: 15px;
        text-align: center;
        color: #64748b;
    }
    .search-container {
        position: relative;
    }
    /* Fix for city search input */
    #city-search, #city-search-new {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
    }
    .location-selector {
        display: flex;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
    }
    .dropdown-wrapper {
        flex: 1;
        min-width: 250px;
    }
    
    /* New SEO content styles */
    .seo-content {
        margin-top: 40px;
    }
    
    .seo-section {
        background: white;
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border: 1px solid #e2e8f0;
    }
    
    .seo-section h2 {
        color: #1e293b;
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        text-align: center;
        border-bottom: 2px solid #f59e0b;
    }
    
    .seo-section h3 {
        color: #334155;
        font-size: 20px;
        margin: 20px 0 10px;
        text-align: center;
    }
    
    .seo-section p {
        color: #475569;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .seo-section ul {
        list-style: none;
        padding: 0;
    }
    
    .seo-section ul li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        color: #475569;
    }
    
    .seo-section ul li:before {
        content: "🕌"; 
        left: 0;
        color: #f59e0b;
    }
    
    .mosque-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }
    
    .mosque-item {
        background: #f8fafc;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        transition: transform 0.2s;
    }
    
    .mosque-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        border-color: #f59e0b;
    }
    
    .mosque-item i {
        color: #f59e0b;
        margin-right: 8px;
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .faq-item {
        background: #f8fafc;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }
    
    .faq-item h4 {
        color: #1e293b;
        font-size: 18px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .faq-item h4 i {
        color: #f59e0b;
    }
    
    .faq-item p {
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }
    
    .calculation-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }
    
    .method-card {
        background: #f8fafc;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        text-align: center;
    }
    
    .method-card.highlight {
        background: #fef3c7;
        border-color: #f59e0b;
    }
    
    .method-card .method-number {
        background: #f59e0b;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        font-weight: 600;
    }
    
    .sun-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .sun-info-card {
        background: #f8fafc;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .sun-info-card i {
        font-size: 24px;
        color: #f59e0b;
        margin-bottom: 10px;
    }
    
    .sun-info-card .label {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 5px;
    }
    
    .sun-info-card .value {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
    }
    
    .towns-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
        margin-top: 15px;
    }
    
    .town-item {
        background: #f8fafc;
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        text-align: center;
        font-size: 14px;
    }
    
    .town-item i {
        color: #f59e0b;
        margin-right: 5px;
    }
    
    .highlight-text {
        color: #f59e0b;
        font-weight: 600;
    }
    
    @media (max-width: 768px) { 
        
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }