*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background:whitesmoke;
    line-height: 1.6;
}
.sticky-bar {
    position: sticky;
    top: 0;
    background: linear-gradient(to right, black, grey);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 22px;
    font-weight: bold;
    z-index: 1000;
}
.container {
    width: 65%;
    margin: 40px auto;
    position: relative;
}
.static-box {
    background: linear-gradient(to bottom, rgb(106, 218, 106), green);
    padding: 20px;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    margin-bottom: 25px;
    position: fixed;
}
.card {
    background: whitesmoke;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.fancy-typography h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.fancy-typography p {
    font-size: 17px;
    color: black;
}
.relative-box {
    position: relative;
    background: rgb(193, 193, 88);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}
.absolute-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: red;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bright-section {
    background: linear-gradient(to right, rgb(62, 161, 179),blue);
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.list-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.list-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.list-box li {
    margin-bottom: 8px;
}
.quote-box {
    background: whitesmoke;
    padding: 25px;
    border-left: 6px solid rgb(171, 86, 186);
    border-radius: 10px;
    font-style: italic;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}
.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    margin-bottom: 50px;
}
.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}