/* Corporate Wellness Page Styles */

/* Hero Section */
.corporate-hero-section {
    background: linear-gradient(135deg, #006015 0%, #008a1f 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.corporate-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 96, 21, 0.1);
    backdrop-filter: blur(10px);
}

.corporate-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.corporate-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d9ff00;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

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

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: #ffffff;
}

.corporate-hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.6s both;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #006015;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #006015, #008a1f);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 96, 21, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 96, 21, 0.2);
}

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

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #006015;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.corporate-services-section {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 5px solid #006015;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 96, 21, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header i {
    font-size: 2rem;
    color: #006015;
    background: rgba(0, 96, 21, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #006015;
    margin: 0;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #006015 0%, #008a1f 100%);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-section .section-title::after {
    background: linear-gradient(45deg, #4caf50, #ffffff);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #ffffff;
}

.benefit-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 96, 21, 0.1);
}

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

.enquiry-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.enquiry-form .form-control:focus {
    border-color: #006015;
    box-shadow: 0 0 0 0.2rem rgba(0, 96, 21, 0.25);
    background: white;
}

.btn-corporate-primary {
    background: linear-gradient(135deg, #006015, #008a1f);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 96, 21, 0.3);
}

.btn-corporate-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 96, 21, 0.4);
    color: white;
}

.btn-corporate-primary i {
    margin-right: 0.5rem;
}

.contact-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 96, 21, 0.08), 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 96, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #006015 0%, #008a1f 50%, #00b528 100%);
    border-radius: 25px 25px 0 0;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 96, 21, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 96, 21, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #006015 0%, #008a1f 50%, #00b528 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 96, 21, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #006015, #008a1f, #00b528);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card:hover .contact-icon::after {
    opacity: 0.3;
}

.contact-info-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #006015 0%, #008a1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: #495057;
    margin-bottom: 0.6rem;
    line-height: 1.7;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enhanced Phone number styling */
.contact-phones {
    background: linear-gradient(135deg, rgba(0, 96, 21, 0.05) 0%, rgba(0, 138, 31, 0.05) 100%);
    border-radius: 15px;
    padding: 1.2rem;
    margin-top: 1rem;
    border: 1px solid rgba(0, 96, 21, 0.1);
}

.contact-info-card .phone-number {
    color: #006015;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    margin: 0.2rem;
    background: rgba(255, 255, 255, 0.7);
}

.contact-info-card .phone-number:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #006015, #008a1f);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 96, 21, 0.3);
}

.contact-info-card .phone-number i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.contact-info-card .phone-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wide Screen Optimization */
@media (min-width: 1200px) {
    .contact-info-card {
        padding: 3.5rem 3rem;
        border-radius: 30px;
    }
    
    .contact-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }
    
    .contact-info-card h5 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-card p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .contact-phones {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-info-card .phone-number {
        font-size: 1.15rem;
        padding: 0.6rem 1rem;
    }
}

/* Medium Screen Optimization */
@media (min-width: 992px) and (max-width: 1199px) {
    .contact-info-card {
        padding: 3rem 2.5rem;
        border-radius: 28px;
    }
    
    .contact-icon {
        width: 85px;
        height: 85px;
        font-size: 2.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-card h5 {
        font-size: 1.5rem;
        margin-bottom: 1.3rem;
    }
    
    .contact-phones {
        padding: 1.3rem;
    }
    
    .contact-info-card .phone-number {
        font-size: 1.1rem;
        padding: 0.5rem 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .corporate-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .service-card,
    .benefit-card {
        margin-bottom: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact Info Cards - Tablet */
    .contact-info-card {
        padding: 2.2rem 1.8rem;
        margin-bottom: 1.5rem;
        border-radius: 22px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 1.3rem;
    }
    
    .contact-info-card h5 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-phones {
        padding: 1rem;
        margin-top: 0.8rem;
    }
    
    .contact-info-card .phone-number {
        font-size: 1rem;
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 576px) {
    .corporate-hero-section {
        padding: 60px 0;
    }
    
    .corporate-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .service-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Contact Info Cards - Mobile */
    .contact-info-card {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 18px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h5 {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-phones {
        padding: 0.8rem;
        margin-top: 0.6rem;
    }
    
    .contact-info-card .phone-number {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
        margin: 0.1rem;
        display: block;
        text-align: center;
    }
    
    .contact-info-card .phone-number i {
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }
}

/* Corporate Booking Section Styles */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.header {
    text-align: center;
    background: linear-gradient(135deg, #006015 0%, #008a1f 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

.form-label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.staff-member {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.staff-member:hover {
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.staff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.staff-id {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.remove-staff {
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-staff:hover {
    background: #c0392b;
    transform: scale(1.1);
}

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

.investigation-category {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
}

.category-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
}

.investigation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.investigation-checkbox {
    margin-right: 10px;
}

.investigation-price {
    font-weight: 600;
    color: #27ae60;
}

.staff-cost {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.staff-cost h5 {
    color: #27ae60;
    margin: 0;
}

.total-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.alert {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.payment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.payment-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideInUp 0.4s ease-out;
    overflow: hidden;
}

.payment-header {
    background: linear-gradient(135deg, #006015 0%, #008a1f 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
    text-align: center;
}

.payment-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.payment-header .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-header .close-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.payment-body {
    padding: 30px;
}

.total-amount-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid #e3f2fd;
}

.amount-display {
    text-align: center;
}

.amount-display #payment-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745 !important;
    text-shadow: 0 2px 4px rgba(40,167,69,0.2);
}

.payment-instruction {
    margin-bottom: 25px;
}

.payment-instruction p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.payment-methods h6 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.payment-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #006015;
    box-shadow: 0 5px 15px rgba(0,96,21,0.1);
    transform: translateY(-2px);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-option-header i {
    font-size: 1.3rem;
}

.bank-details {
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 600;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: 2.1rem;
    color: #006015 !important;
    background: #e8f5e8;
    padding: 5px 10px;
    border-radius: 6px;
}

.online-payment-content {
    text-align: center;
    margin-top: 15px;
}

.online-payment-content .btn {
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.online-payment-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .investigation-grid {
        grid-template-columns: 1fr;
    }
}