body {
    background-color: white;
    color: #1C1C27;
    font-family: Arial, sans-serif;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: #495057;
}

.carousel-inner .card {
  border-radius: 1rem;
}

.feature-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
}


.header-section {
    background-image: url('/static/images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #0F3562;
}

.header-section .overlay {
    background-color: rgba(255, 255, 255);
    padding: 50px;
    display: inline-block;
    border-radius: 10px;
}

.overlay {
    background-color: rgba(255, 255, 255);
    padding: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    align-items: center;
}

.feature-section {
    padding: 32px 0px;
    margin-bottom: 20px;

    text-align: center;
    background-color: white;
}

.grid-box {
    padding: 32px;
    margin-bottom: 20px;
    background-color: #DDC7AD;

    box-shadow: 8px 11px 16px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    padding: 20px;
    background-color: #EDF2EF;
    border: 1px solid #7AB4D9;
    border-radius: 8px;
    text-align: center;
    color: #0F3562;
}

.home-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1C1C27;
    height: 80px;
    box-shadow: none;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

.home-header.scrolled {
    box-shadow: 0px 4px 4px rgba(29,140,242,0.25);
}

.home-header-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.home-header .nav-link {
    color: white;
    transition: color 0.3s ease;
}

.home-header .nav-link:hover {
    color: #7AB4D9;
}

.home-box {
    /* Frame 1 */
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 32px;
    margin-bottom: 20px;

    width: 100%;/* 1344px */

    background-color: rgba(15, 53, 98, 0.4);
    box-shadow: 8px 11px 16px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

.home-box .overlay {
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.0);
}