* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 50px 15px;
    background: linear-gradient(135deg, #285b17, #53a7bc);
    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);
}

/* Extra highlight (optional visual boost) */
.highlight {
    border: 1px solid rgba(255,255,255,0.25);
}

/* Main Heading */
.info-box h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffecd2, #c3a59b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Intro paragraph */
.intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Normal paragraph */
.info-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Section Headings */
.info-box h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffe082;
}

/* 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: #efe944;
    font-weight: bold;
}

/* Strong text */
.info-box strong {
    color: #ffccbc;
}

/* Highlight Note */
.note {
    margin-top: 35px;
    padding: 22px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d4339, #083417);
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.note strong {
    color: #fffde7;
}
/* this is our comment*/