/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.dict-logo, .ntc-logo, .bp-logo {
    height: 80px;
    margin: 0 20px;
}

header h1 {
    color: #d32f2f;
    font-size: 2.5rem;
}

/* Main Content Styles */
main {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.alert-box {
    display: flex;
    background-color: #ffebee;
    border-left: 5px solid #d32f2f;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.alert-icon {
    font-size: 3rem;
    color: #d32f2f;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.alert-content h2 {
    color: #d32f2f;
    margin-bottom: 5px;
}

.good-vibes {
    font-weight: bold;
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 15px;
    font-style: italic;
}

.blocked-site {
    font-weight: bold;
    color: #d32f2f;
    background-color: #ffebee;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #d32f2f;
}

.info-section, .action-section {
    margin-bottom: 30px;
}

h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

.button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #004c99;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
    color: #0066cc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .dict-logo, .ntc-logo, .bp-logo {
        height: 60px;
        margin: 0 10px;
    }
    
    .alert-box {
        flex-direction: column;
    }
    
    .alert-icon {
        margin-bottom: 15px;
        margin-right: 0;
        justify-content: center;
    }
    
    .button {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}
