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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1B1F3B;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(27, 31, 59, 0.08);
    border-left: 8px solid #ffcd29;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B1F3B;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.guideline {
    background: #fefefe;
    border-left: 6px solid #ffcd29;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.guideline h3 {
    font-size: 1.25rem;
    color: #1B1F3B;
    margin-bottom: 10px;
}

.guideline p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 6px;
}

.footer-note {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .guideline h3 {
        font-size: 1.1rem;
    }

    .guideline p {
        font-size: 0.95rem;
    }
}
