:root {
    --text-color: #3d3c3c;
    --border-color: #e0e0e0;
    --bg-light: #f2f1ee;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 300;
    animation: fade-in 1s ease-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-section {
    background-color: var(--bg-light);
}

.hero-text-container {
    padding: 60px;
}

.padding-wrapper {
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 991px) {
    .padding-wrapper {
        margin: 0 auto;
        text-align: center;
    }

    .hero-text-container {
        padding: 40px 20px;
    }
}

.hero-image {
    object-fit: cover;
    height: 100%;
    min-height: 400px;
}

.border-bottom-dark {
    border-bottom: 2px solid var(--text-color);
}

.btn-dark-outline {
    border: 1px solid #f95f0e;
    /* Orange border */
    color: #f95f0e;
    /* Orange text */
    transition: all 0.2s ease-in-out;
}

.btn-dark-outline:hover {
    background-color: #f95f0e;
    color: #fff;
}

.btn-dark {
    background-color: #f95f0e;
    /* Orange bg */
    border: none;
    color: #fff;
}

.btn-dark:hover {
    background-color: #000;
}

.info-card {
    padding-right: 20px;
}

.support-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}