﻿body {
}

.about-hero {
    background-image: linear-gradient(135deg, #EAD0A4, white);
    color: #fff;
    border-radius: 16px;
    padding: 20px 35px;
    margin-bottom: 24px;
    box-shadow: 3px 3px 7px black, 3px 3px 7px black;
    opacity: .9;
}

    .about-hero h1 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .about-hero p {
        margin: 0;
        font-size: 1.05rem;
        opacity: .95;
    }

.ups-hero {
    background: linear-gradient(135deg,#A85803 15%, #D38E4A 25%, #DBCEC0 70%);
    color: #fff;
    border-radius: 20px;
    padding: 20px 35px;
    margin-bottom: 24px;
    box-shadow: 3px 3px 7px black, 3px 3px 7px black;
    opacity: .9;
}
.usps-hero {
    background: linear-gradient(135deg, #17529B, white);
    color: #fff;
    border-radius: 16px;
    padding: 20px 35px;
    margin-bottom: 24px;
    box-shadow: 3px 3px 7px black, 3px 3px 7px black;
    opacity: .9;
}


.badge-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    font-size: .9rem;
    margin-right: 8px;
    margin-top: 12px;
}

.section-title {
    margin: 36px 0 14px;
    font-weight: 700;
}

.muted {
    color: #6c757d;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.cardx {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    padding: 18px 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    height: 100%;
}

    .cardx h3 {
        font-size: 1.05rem;
        margin-top: 0;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .cardx p {
        margin: 0;
    }

.callout {
    border-left: 5px solid #1976d2;
    background: #f4f9ff;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 16px;
    border: 1px solid #dbeeff;
}

.steps {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

    .steps li {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 6px 16px rgba(0,0,0,.05);
        position: relative;
    }

        .steps li::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            top: 12px;
            right: 14px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #1976d2;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .95rem;
        }

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-primaryx {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    text-decoration: none;
    display: inline-block;
}

    .btn-primaryx:hover {
        background: #155fa8;
        color: #fff;
    }

.btn-outline {
    background: transparent;
    color: #1976d2;
    border: 1px solid #1976d2;
    border-radius: 10px;
    padding: 10px 14px;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline:hover {
        background: rgba(25,118,210,.08);
        color: #1976d2;
    }

.divider {
    height: 1px;
    background: #e9ecef;
    margin: 22px 0;
}

.container-grid {
    display: grid;
    column-gap: 1px;
    grid-template-columns: 1% 63% 3% 33% 1%;
    background-color: transparent;
    padding: 5px;
    vertical-align: top;
}

img {
    width: 100%;
    height: auto;
}
.leftcolumn {
    float: left;
    width: 60%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 40%;
    background-color: #f1f1f1;
    padding-left: 20px;
}