* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #00d4ff;
}

header p {
    font-size: 1.1em;
    color: #ccc;
}

.boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.box {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

.box h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #00d4ff;
}

.box p {
    font-size: 1em;
    color: #ccc;
}

.box a {
    color: #00d4ff;
    text-decoration: none;
}

.box a:hover {
    text-decoration: underline;
}

.support .btn {
    display: inline-block;
    background: #00d4ff;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.support .btn:hover {
    background: #00aaff;
}

.donate {
    margin-top: 20px;
}

.donate p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 15px;
}

.donate-btn {
    background: #ff4d4d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.donate-btn:hover {
    background: #e04343;
}

@media (max-width: 768px) {
    .boxes {
        flex-direction: column;
        align-items: center;
    }

    .box {
        min-width: 100%;
    }

    header h1 {
        font-size: 2em;
    }
}