﻿/* ====== HANDOVER GUARANTEE PAGE ====== */
.handover-wrapper {
    background: #f3f3f3;    
    color: #4f5ca3;
}

.handover-banner {
    background: #e6e6e6;
    padding: 30px 0;
    margin-bottom: 30px;
}

.handover-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.handover-banner-icon {    
    height: 48px;
}

.handover-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #4A549E; /* your brand purple */
    margin: 0;
}

.handover-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.handover-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #4f5ca3;
}

/* Body */
.container-handover {
    max-width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
    padding: 2.5rem 1.25rem 1.5rem;
    background: #f3f3f3;
}

/* Columns */
.handover-col-left {
    width: 80%
}

.handover-heading {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #4f5ca3;
    font-weight: 700;
    margin: 0;
}

.handover-col-right {
    color: #555;
    font-size: 1.8rem;
    line-height: 1.1;
}

    .handover-col-right p {
        margin-bottom: 1rem;
    }

/* Highlight text */
.text-red {
    color: #d8474e;
}

.strong {
    font-weight: 600;
}

/* Bottom section */
.handover-bottom {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

/* Centered note */
.handover-note {
    max-width: 55%;
    margin: 0 auto;
    
   
    padding: 2rem 1rem 3rem;
}

/* Responsive */
@media (max-width: 991px) {
    .container-handover {
        grid-template-columns: 1fr;
    }

    .handover-col-left {
        margin-bottom: .5rem;
        width: 100%
    }

    .handover-heading {
        font-size: 1.6rem;
    }

    .handover-note {
        max-width: 90%;
    }
}
