:root {
    --primary-color: #0A2463;
    --accent-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A3A70;
}

/* Base styles for the page content, ensuring contrast and readability */
.page-promotions-first-deposit-offer {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-light);
}

.page-promotions-first-deposit-offer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-first-deposit-offer .section-padding {
    padding: 60px 0;
}

.page-promotions-first-deposit-offer .bg-light {
    background-color: var(--bg-light);
}

.page-promotions-first-deposit-offer .bg-dark {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-promotions-first-deposit-offer .text-light {
    color: var(--text-color-light);
}

.page-promotions-first-deposit-offer .text-center {
    text-align: center;
}

.page-promotions-first-deposit-offer .mt-3 {
    margin-top: 1rem;
}

/* Headings */
.page-promotions-first-deposit-offer .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-first-deposit-offer .bg-dark .section-title {
    color: var(--accent-color);
}

.page-promotions-first-deposit-offer h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-first-deposit-offer .bg-dark h3 {
    color: var(--accent-color);
}

/* Buttons */
.page-promotions-first-deposit-offer .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-promotions-first-deposit-offer .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.page-promotions-first-deposit-offer .btn-primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-promotions-first-deposit-offer .btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 1px solid var(--accent-color);
}

.page-promotions-first-deposit-offer .btn-secondary:hover {
    background-color: #081B4B; /* Slightly darker primary */
    transform: translateY(-2px);
}