/* Custom styles to enhance Bootstrap 5 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.container {
    background-color: white;
    padding: 40px;
    margin-top: 0;
    margin-bottom: 20px;
}

.header-section {
    margin-top: 0;
}

h1, h2, h3, h4, h5 {
    color: #2c3e50;
}

h1 {
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.contact-info {
    color: #666;
    font-size: 0.95em;
}

.contact-info span:not(.mx-2) {
    display: inline-block;
}

h5 {
    color: #2980b9;
    font-weight: bold;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .contact-info .mx-2 {
        display: none;
    }

    .contact-info span {
        display: block;
        margin-bottom: 3px;
    }
}
