/* Rabbit Soft Solutions - Global Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2b6cb0;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
}

.containers {
    margin: 40px auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.containers header {
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.containers h1 {
    color: var(--primary-color);
    font-size: 2.4rem;
    margin: 0;
}

.containers h2 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color);
    margin-top: 30px;
    padding-bottom: 5px;
}

.containers h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.containers p,
li {
    color: var(--text-light);
}

.containers ul {
    padding-left: 20px;
}

.containers li {
    margin-bottom: 10px;
}

.containers contact-section {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .containers .container {
        margin: 15px;
        padding: 25px;
    }
}