* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 50px 15px;
    color: #040609;
    background-color: #a6cb7e;
}

/* Main Info Box */
.info-box {
    max-width: 1000px;
    margin: auto;
    background-color:#e9e3b8;
    backdrop-filter: blur(14px);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* Main Heading */
.info-box h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dad7cd, #c4b4c7);
    color:#344e41;
}

/* Paragraph */
.info-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Section Headings */
.info-box h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #390d2d;
}

/* Lists */
.info-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.info-box ul li {
    padding-left: 35px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Bullet Icon */
.info-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #abe0d7;
    font-weight: bold;
}

/* Highlight Note */
.note {
    margin-top: 35px;
    padding: 22px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, #576e70, #6d8086);
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.note strong {
    color: #fffde7;
}
