/* General Reset */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 20px 0;
    /* background-color: #f4f4f4; */
    /* border-bottom: 1px solid #ccc; */
}

.header h1 {
    font-size: 2rem;
    color: #333;
}

/* Content */
.content {
    padding: 20px;
    line-height: 1.6;
}

.content h2 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}

.content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.content a {
    color: #007BFF;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f4f4f4;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .content h2 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.1rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .footer {
        font-size: 0.75rem;
    }
}
