
/* Header */
.header {
    background:#0a1c48;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.header h2 {
    margin: 0;
    font-size: 40px;
   font-weight: 600; 
}



/* Layout Container */
.container {
    width: 85%;
    margin: auto;
}

.main {
    display: flex;
    margin-top: 30px;
}

/* Left Side Content */
.left {
    width: 70%;
}

.section-title {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
}

.left p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}

.left ul {
    margin-left: 20px;
    font-size: 16px;
}



.menu {
    list-style: none;
    padding-left: 0;
}

.menu li {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    color: #8a1a1a;
    font-size: 16px;
}

.menu li:last-child {
    border: none;
}

.menu li:hover {
    color: #c01010;
}