/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #e5e5e5; /* light grey */
    color: #111;
    line-height: 1.6;
}

/* Links */
a {
    color: #0088cc; /* Telegram blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #0088cc;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: white;
    color: #0088cc;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

/* Main Content */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.content section {
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
}

.content h2 {
    color: #0088cc;
    margin-bottom: 15px;
}

.content h3 {
    color: #333;
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 15px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}
