

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Header */
.header h1 {
    font-size: 2.5rem;
    color: #13357b;
    padding-left: 15px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Content Layout */
.content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.left-section, .right-section {
    width: 48%;
}

/* Section Titles */
h2 {
    font-size: 1.8rem;
    color: #13357b;
    border-left: 5px solid #13357b;
    padding-left: 10px;
    margin-bottom: 1.5rem;
}

h6 {
    color: #13357b;
    font-size: 1.4rem;
}

h3 i {
    color: #13357b;
    margin-right: 10px;
}

/* Prep and Requirements Section */
.prep-section, .requirements-section {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.prep-section:hover, .requirements-section:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* List */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

ul li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #13357b;
    font-size: 1.5rem;
}

/* Buttons */
.button-container {
    margin-top: 1rem;
}

.button-container a {
    display: inline-block;
    background-color: #13357b;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.button-container .secondary {
    background-color: #f44336;
}

.button-container a:hover {
    background-color: #13357b;
    color: #fff;
}

/* Contact Section */
.right-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

a {
    color: #13357b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
    }
}
