/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 20px;
}

.site-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 40px;
    color: black;
    text-decoration: none;
}

.site-title:hover {
    color: #006ccb;
    cursor: pointer;
}

/* BUTTONS */
.big-button {
    padding: 15px 32px;
    font-size: 12px;
    margin: 5px;
    cursor: pointer;
    background-color: #006ccb;
    border: 2px solid black;
    color: white;
    text-align: center;
    text-decoration: none;
}

.big-button:hover {
    background-color: #e0e0e0;
    color: black;
}

/* TEXT BLOCKS */
.text {
    text-align: center;
    font-size: 20px;
    margin: 30px 50px 0 50px;
}

.contact-info {
    margin-top: 20px;
    margin-left: 50px;
    font-size: 18px;
    line-height: 1.8;
}

/* FORM */
.form-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

form {
    width: 90%;
    max-width: 800px;
    padding: 30px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Input and textarea full width inside form */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 120px;
    resize: vertical;
}

input[type="submit"] {
    background-color: #006ccb;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

input[type="submit"]:hover {
    background-color: #004e9e;
}

.box {
    flex: 1;
    aspect-ratio: 1 / 1;
    background-color: #006ccb;
    border: 2px solid black;
    margin: 20px;
    color: white;
    text-align: center;
    padding: 15px;

    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
}

.white-box {
    width: 200px;
    height: 200px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.white-box img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.white-box p {
    margin: 0;
    font-size: 16px;
}

/* FLEX GROUP ROWS */
.group-row,
.application-row {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.index-row {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

