* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.header {
    background: linear-gradient(90deg, #b30000, #ffcc00);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') no-repeat center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    margin-top: 10px;
}

/* SECTION */
.section {
    padding: 60px 0;
}

.section h2 {
    color: #b30000;
    margin-bottom: 20px;
}

.bg-light {
    background: #f5f5f5;
}

/* GRID */
.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    flex: 1;
    border-left: 5px solid #ffcc00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 10px;
}

/* MOBILE */
@media(max-width: 768px) {
    .grid {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* CARD DESIGN */
.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 6px solid #ffcc00;
}

.card h2 {
    color: #b30000;
    margin-bottom: 10px;
}

.card ul {
    margin-left: 20px;
}

.card ul li {
    margin-bottom: 6px;
}

/* BUTTON */
.btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #b30000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #ffcc00;
    color: #000;
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.bg-light {
    background: #f5f5f5;
}

/* HERO */
.hero {
    background: linear-gradient(90deg, #b30000, #ffcc00);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    margin-top: 10px;
}

/* GRID CARD VIEW */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* CARD */
.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 6px solid #ffcc00;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    color: #b30000;
    margin-bottom: 10px;
}

.card ul {
    margin-left: 20px;
}

/* BUTTON */
.btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #b30000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #ffcc00;
    color: #000;
}

/* SECTION */
.section {
    padding: 10px 0;
}

/* MOBILE */
@media(max-width: 768px){
    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}

.small-btn {
    margin-left: 10px;
    padding: 5px 12px;
    font-size: 12px;
    border: none;
    border-radius: 20px;
    background: #b30000;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.small-btn:hover {
    background: #ffcc00;
    color: #000;
}

.card p {
    text-align: justify;
    line-height: 1.8;
    font-size: 15px;
    color: #444;
}

.card ul li {
    text-align: justify;
    line-height: 1.6;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.card ul {
    padding-left: 18px;
}

.card ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.card h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-list {
    margin-top: 15px;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    
    padding-left: 12px;
}

.policy-list li strong {
    color: #b30000;
    font-weight: 600;
}

/* FULL WIDTH CARD */
.card.full {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* GRID 4 (activities) */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* SMALL CARD STYLE */
.grid-4 .card {
    text-align: center;
}

/* TITLE SMALL */
.grid-4 h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #b30000;
}

