/* Responsive Styles */
/* Mobile First Approach */

/* Mobile (default) */
@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(21, 29, 40, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--header-color);
    color: var(--text-color);
    font-weight: 600;
}

table td {
    color: var(--text-secondary);
}

table tr:hover {
    background-color: rgba(0, 100, 249, 0.1);
}

@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 8px 10px;
    }
}

/* Image Responsive */
.hero-image,
.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



