/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul li {
    background: #e9f7ff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

strong {
    color: #0056b3;
}

/* Header */
header {
    background-color: #007bff;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.btn-primary:hover {
    background-color: #218838;
}

.btn-secondary {
    background-color: #dc3545;
}

.btn-secondary:hover {
    background-color: #c82333;
}

/* Sections */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    font-size: 2em;
    color: #0056b3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-content p {
    font-size: 1.1em;
    text-align: center;
}

.hero-image, .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

#scam-warning .container {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

#scam-warning h2 {
    color: #856404;
}

#scam-warning p {
    color: #856404;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer .btn-primary {
    background-color: #007bff;
}

footer .btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
    }

    .hero-content p {
        text-align: left;
        flex: 1;
        padding-right: 30px;
    }

    .hero-image {
        flex: 1;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2.5em;
    }
}

