* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 50px 15px;
    background: linear-gradient(135deg, #6c74c0, #e081d7);
    color: #fff;
}

/* Main Info Box */
.info-box {
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.15);
    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, #4721a7, #8553c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 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: #2c123f;
}

/* 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: #80ffea;
    font-weight: bold;
}

/* Strong text */
.info-box strong {
    color: #bfd2d8;
}

/* Highlight Note */
.note {
    margin-top: 35px;
    padding: 20px 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4d84c0, #e36da2);
    color: #1b163c;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.note strong {
    color: #fffde7;
}
