* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    padding: 40px 15px;
    background-color:#f07964;
    color: #2b2d42;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
}

/* Hero Section */
.hero {
    color: #2e0250;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 40px;
    color:black;
   
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Glass Intro */
.glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Cards */
.card {
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.card h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    padding-left: 35px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

/* Check icon */
.card ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.blue {
    background-color: #c7e8d4;
    color: #0b2233;
}

.purple {
    background-color: #dec1f4;
    color: #2e0250;
}

.teal {
    background-color: #f2b5d4;
    color: #083b2e;
}

.red {
    background-color: #ffd7ba;
}

.impact ul li::before {
    content: "⚠";
}
