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

body {
    font-family: 'Cairo', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

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

/* Gulf Time Zone Bar */
.datetime-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gulf-times {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.time-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.time-zone .country {
    font-size: 12px;
    margin-bottom: 2px;
    opacity: 0.9;
}

.time-zone .time {
    font-weight: bold;
    font-size: 16px;
    color: #ffd700;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 50px;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #1e3c72;
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-brand p {
    color: #666;
    font-size: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #1e3c72;
    background-color: #f0f4f8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.gulf-date-display {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.gulf-date-display h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.date-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hijri-date, .gregorian-date {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

/* Breaking News */
.breaking-news {
    background: #ff4757;
    color: white;
    padding: 15px 0;
    animation: pulse 2s infinite;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.breaking-header h3 {
    font-size: 16px;
    font-weight: bold;
}

.breaking-time {
    font-size: 12px;
    opacity: 0.9;
}

.breaking-content {
    flex: 1;
}

.breaking-content p {
    font-size: 16px;
    margin: 0;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Countries Section */
.countries-section {
    padding: 60px 0;
    background: white;
}

.countries-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3c72;
    font-size: 32px;
}

.countries-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
}

.country-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.country-content.active {
    display: block;
}

.country-content h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.country-news {
    display: grid;
    gap: 20px;
}

.news-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
    transition: all 0.3s;
}

.news-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.news-item h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-item p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-time {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* News Section */
.news-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e3c72;
    font-size: 32px;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 48px;
    opacity: 0.8;
}

.news-content {
    padding: 25px;
}

.news-category {
    background: #1e3c72;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.news-content h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
}

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

.news-date, .news-time, .news-location {
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1e3c72;
    font-size: 32px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.gulf-coverage {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.gulf-coverage h4 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.gulf-coverage ul {
    list-style: none;
    padding: 0;
}

.gulf-coverage li {
    padding: 5px 0;
    color: #666;
}

.contact-datetime {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 10px;
}

.contact-datetime p {
    color: white;
    margin-bottom: 8px;
}

.contact-form h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s;
}

.checkbox-container:hover {
    border-color: #1e3c72;
    background: #f0f4f8;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #1e3c72;
}

.checkbox-label {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkmark {
    display: none;
}

.checkbox-label a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.checkbox-label a:hover {
    color: #2a5298;
    text-decoration: underline;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label {
    color: #1e3c72;
}

.checkbox-container input[type="checkbox"]:focus {
    outline: 2px solid #1e3c72;
    outline-offset: 2px;
}

.form-timestamp {
    margin-bottom: 20px;
    text-align: center;
}

.form-timestamp small {
    color: #666;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ffd700;
}

.footer-datetime {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Design */

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .hero-content h2 {
        font-size: 42px;
    }
    
    .gulf-times {
        gap: 25px;
    }
    
    .time-zone {
        min-width: 140px;
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 1140px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .hero-content h2 {
        font-size: 38px;
    }
    
    .gulf-times {
        gap: 20px;
    }
    
    .time-zone {
        min-width: 130px;
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .gulf-times {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .time-zone {
        min-width: 110px;
    }
    
    .time-zone .country {
        font-size: 11px;
    }
    
    .time-zone .time {
        font-size: 15px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    .date-info {
        gap: 20px;
    }
    
    .countries-tabs {
        gap: 8px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .gulf-times {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .time-zone {
        min-width: 100px;
    }
    
    .time-zone .country {
        font-size: 10px;
    }
    
    .time-zone .time {
        font-size: 14px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-brand h1 {
        font-size: 20px;
        text-align: center;
    }
    
    .nav-brand p {
        text-align: center;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .gulf-date-display {
        padding: 18px;
        margin: 25px 0;
    }
    
    .date-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .hijri-date, .gregorian-date {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .breaking-news .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .breaking-header {
        justify-content: center;
    }
    
    .countries-tabs {
        gap: 6px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-image {
        height: 180px;
    }
    
    .placeholder-image {
        font-size: 40px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}


/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    
    .datetime-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .gulf-times {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .time-zone {
        min-width: 85px;
        margin-bottom: 5px;
    }
    
    .time-zone .country {
        font-size: 9px;
        margin-bottom: 1px;
    }
    
    .time-zone .time {
        font-size: 12px;
    }
    
    .header {
        top: 40px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-brand h1 {
        font-size: 18px;
        text-align: center;
        line-height: 1.2;
    }
    
    .nav-brand p {
        font-size: 12px;
        text-align: center;
    }
    
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .gulf-date-display {
        padding: 15px;
        margin: 20px 0;
    }
    
    .gulf-date-display h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .date-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .hijri-date, .gregorian-date {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .breaking-news {
        padding: 12px 0;
    }
    
    .breaking-news .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .breaking-header h3 {
        font-size: 14px;
    }
    
    .breaking-content p {
        font-size: 14px;
    }
    
    .countries-section, .news-section, .contact {
        padding: 30px 0;
    }
    
    .countries-section h2, .news-section h2, .contact h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .countries-tabs {
        gap: 4px;
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .tab-btn {
        padding: 6px 8px;
        font-size: 10px;
        min-width: 70px;
        border-radius: 15px;
    }
    
    .country-content h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .news-item {
        padding: 15px;
    }
    
    .news-item h4 {
        font-size: 16px;
    }
    
    .news-item p {
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-image {
        height: 150px;
    }
    
    .placeholder-image {
        font-size: 32px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-category {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }
    
    .news-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .news-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .news-meta {
        font-size: 11px;
        gap: 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info h3, .contact-form h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .gulf-coverage {
        padding: 15px;
        margin: 20px 0;
    }
    
    .gulf-coverage h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .gulf-coverage li {
        font-size: 13px;
        padding: 3px 0;
    }
    
    .contact-datetime {
        padding: 15px;
        margin-top: 20px;
    }
    
    .contact-datetime p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .checkbox-container {
        padding: 12px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
        font-size: 13px;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
    }
}

@media (max-width: 575px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 10px;
        font-size: 12px;
        width: 100%;
        min-width: auto;
    }
    
    .cookie-link {
        font-size: 12px;
        margin-top: 5px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .gulf-date-display {
        padding: 12px;
        margin: 15px 0;
    }
    
    .date-info {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .countries-section, .news-section, .contact {
        padding: 25px 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .placeholder-image {
        transform: scale(0.9);
    }
    
    .news-category {
        font-weight: 600;
    }
}

/* Print Styles */
@media print {
    .datetime-bar,
    .header,
    .breaking-news,
    .contact,
    .footer {
        display: none;
    }
    
    .news-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hero {
        background: none;
        color: #333;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border-top: 3px solid #ffd700;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 80px;
}

.cookie-btn.accept {
    background: #28a745;
    color: white;
}

.cookie-btn.accept:hover {
    background: #218838;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: #dc3545;
    color: white;
}

.cookie-btn.decline:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.cookie-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .news-card {
        border: 2px solid #000;
    }
    
    .tab-btn {
        border: 2px solid #000;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 2px solid #000;
    }
    
    .cookie-consent {
        border: 3px solid #000;
    }
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
        font-size: 13px;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
    }
}
