* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-section {
    max-width: 1200px;
    margin: 40px auto;
    background-color: #1e4a72;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
        
.overview-title {
    color: white;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: 3px solid white;
    padding-bottom: 15px;
}
        
.overview-content {
    color: white;
    line-height: 1.7;
    font-size: 15px;
}
        
.overview-content p {
    margin-bottom: 25px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e5e9;
    flex-direction: row;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    flex-shrink: 0;
}

.image-container{
    width: 45%;
}

/*custom image size*/
.image {
   width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.card-content {
    width: 55%;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #34495e;
    color: #34495e;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: #34495e;
    color: white;
    transform: scale(1.05);
}

.separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #e1e5e9, transparent);
    margin: 40px 0;
}

