/* General Styles */
body {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    background-color: #F4F6FF;
    /* Light grey background for the rest of the page */
    color: #10375C;
}

.header {
    position: relative;
    height: 250px;
    /* Height of the header */
    overflow: hidden;
    /* Ensures the curve doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #02243F, #10375C);
    /* Navy gradient */
}

.header-clip svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensures the curve is layered correctly */
}

.header-content {
    position: relative;
    z-index: 2;
    /* Ensures content is above the curve */
}

.header .logo {
    height: 100px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.contact-section {
    padding: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card .icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #EB8317, #F3C623);
    margin-right: 16px;
}

.contact-card .icon {
    font-size: 30px;
    color: white;
}

.contact-card .content {
    flex: 1;
}

.contact-card .title {
    font-size: 18px;
    font-weight: bold;
    color: #10375C;
}

.contact-card .detail {
    font-size: 14px;
    color: #B1B2B6;
}

.contact-card .arrow {
    color: #10375C;
    font-size: 20px;
    margin-left: auto;
}

/* Footer Styles */
.footer {
    background-color: #F4F6FF;
    padding: 16px;
    text-align: center;
    color: #10375C;
    font-size: 14px;
    margin-top: auto;
    /* Pushes the footer to the bottom */
}

#version-info {
    font-weight: bold;
}