:root {
    /* Color Palette */
    --color-blue-primary: #0545A9;
    --color-blue-secondary: #04A8F9;
    --color-dark-text: #1A181C;
    --color-gray: #DEDFE0;
    --color-white: #FFFFFF;
    --color-black: #121212;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Mona Sans', sans-serif;

    /* Font Sizes */
    --font-h1: 48px;
    --font-h2: 40px;
    --font-h3: 32px;
    --font-h4: 24px;
    --font-h5: 20px;
    --font-body-20: 20px;
    --font-body-16: 16px;
    --font-body-14: 14px;

    /* Spacing */
    --border-radius-card: 20px;
    --border-radius-pill: 50px;

    /* Shadows */
    --shadow-card: 0px 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-header: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    color: var(--color-dark-text);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-h1);
}

h2 {
    font-size: var(--font-h2);
}

h3 {
    font-size: var(--font-h3);
}

h4 {
    font-size: var(--font-h4);
}

h5 {
    font-size: var(--font-h5);
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-blue-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--color-blue-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(5, 69, 169, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--color-blue-primary);
    border: 2px solid var(--color-blue-primary);
    border-radius: var(--border-radius-pill);
    padding: 10px 26px;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: var(--color-blue-primary);
    color: var(--color-white);
}

/* Arrow Circle Button */
.arrow-circle {
    width: 24px;
    height: 24px;
    background-color: var(--color-dark-text);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    background-color: var(--color-blue-primary);
    transform: translateX(4px);
}

/* Cards */
.card-custom {
    border: none;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Links */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --font-h1: 36px;
        --font-h2: 32px;
        --font-h3: 28px;
        --font-h4: 22px;
        --font-h5: 18px;
    }
}

@media (max-width: 576px) {
    :root {
        --font-h1: 32px;
        --font-h2: 28px;
        --font-h3: 24px;
        --font-h4: 20px;
        --font-h5: 18px;
    }
}

/* Utility Classes */
.text-blue-primary {
    color: var(--color-blue-primary);
}

.text-blue-secondary {
    color: var(--color-blue-secondary);
}

.bg-blue-primary {
    background-color: var(--color-blue-primary);
}

.bg-blue-secondary {
    background-color: var(--color-blue-secondary);
}

/* Section Spacing */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Overlay */
.overlay-dark {
    background: rgba(0, 0, 0, 0.3);
}

.overlay-gradient {
    background: linear-gradient(90deg, rgba(26, 24, 28, 0.9) 0%, rgba(26, 24, 28, 0.4) 100%);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ================================
   Content with Check Icons
   For li elements in content areas
   ================================ */

/* Check list with SVG icons */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #121212;
    line-height: 1.5;
}

.check-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Content areas with automatic check icons for li */
.content-with-checks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-with-checks ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #121212;
    line-height: 1.5;
}

.content-with-checks ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 12L11 14L15 10M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%2304A8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Alternative styling for ol lists */
.content-with-checks ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: item;
}

.content-with-checks ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #121212;
    line-height: 1.5;
}

.content-with-checks ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 12L11 14L15 10M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%2304A8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}