main { padding: 0!important }

/* Container & Background */
.cb-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                url("images/cropped-main-hero-pic.jpg") center/cover no-repeat local;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 5%;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* Header Section */
.cb-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.cb-logo-circle {
    background-color: #2E8B57;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cb-brand {
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.cb-motto {
    margin: 0;
    font-size: 14px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Message & Quote Area */
.cb-message-box {
    max-width: 550px;
    text-align: right;
    color: white;
}

.cb-commitment {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: white;
}

.cb-highlight { font-weight: bold; color: #fff; }
.cb-underline { text-decoration: underline; font-weight: bold; }

.cb-quote {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-right: 4px solid #2E8B57;
    padding: 20px;
    margin: 0;
    border-radius: 8px 0 0 8px;
    font-style: italic;
    font-size: 18px;
    color: white;
}

.cb-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    opacity: 0.8;
}

/* Buttons Area */
.cb-button-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.cb-btn {
    text-decoration: none;
    color: white;
    width: 240px;
    padding: 15px;
    border-radius: 12px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cb-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.cb-btn-sub {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 4px;
}

.cb-btn-hospital { background-color: #24A0ED; }
.cb-btn-donor    { background-color: #28A745; }
.cb-btn-patient  { background-color: #FF991C; }

/* Responsive adjustments */
@media (max-width: 850px) {
    .cb-top-section { flex-direction: column; align-items: center; }
    .cb-message-box { text-align: center; }
    .cb-quote { border-right: none; border-bottom: 4px solid #2E8B57; border-radius: 8px; }
    .cb-button-group { margin-top: 20px; }
}
