/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4e73df, #1f3c9f);
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #fff;
}

.logo {
    max-width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.main-content {
    flex: 1;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    max-width: 1200px;
}

h1, h2 {
    font-size: 2.5rem;
    color: #ffcb00;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 20px;
}

ul, ol {
    padding-left: 20px;
    margin-top: 10px;
}

ul li, ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 1.1rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.buttons {
    text-align: center;
    margin-top: 30px;
}

.buttons button {
    background: #ffcb00;
    color: #333;
    border: none;
    padding: 15px 35px;
    margin: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
}

.buttons button:hover {
    background: #1f3c9f;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

footer {
    background: #1f3c9f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
}

footer p {
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
        margin: 10px;
    }

    .buttons button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }

    .buttons button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}