body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.about-title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    /* color: #6b7280; */
    margin-bottom: 16px;
}

.about-img-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.about-img-container img {
    transition: .5s;
}

.about-img-container:hover img {
    transform: scale(1.04);
}

.candidate-stats {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    min-width: 180px;
}

.stat-box h3 {
    color: #D52B1E;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box span {
    color: #666;
    font-size: .95rem;
}

.campaign-footer {

    background:
        linear-gradient(135deg,
            #111827,
            #1f2937);

    color: white;

    position: relative;

    overflow: hidden;

    padding-top: 80px;
}

.campaign-footer::before {

    content: "";

    position: absolute;

    top: -250px;
    right: -150px;

    width: 500px;
    height: 500px;

    background:
        rgba(213, 43, 30, .08);

    border-radius: 50%;
}

.footer-main {

    padding-bottom: 50px;
}

.footer-logo h2 {

    font-size: 2.5rem;

    font-weight: 800;

    margin-top: 10px;
}

.footer-logo span {

    color: #d1d5db;
}

.vote-tag {

    background: #D52B1E;

    padding: 8px 20px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.footer-description {

    color: #cbd5e1;

    margin-top: 25px;

    line-height: 1.9;

    max-width: 500px;
}

.footer-heading {

    color: white;

    font-weight: 700;

    margin-bottom: 30px;

    position: relative;
}

.footer-heading::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 60px;
    height: 3px;

    background: #D52B1E;
}

.contact-item {

    display: flex;

    gap: 15px;

    margin-bottom: 25px;

    align-items: flex-start;
}

.contact-item i {

    color: #D52B1E;

    font-size: 1.2rem;

    margin-top: 3px;
}

.contact-item span {

    color: #cbd5e1;

    line-height: 1.7;
}

.footer-social {

    margin-top: 35px;
}

.footer-social a {

    width: 45px;
    height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: white;

    margin-right: 12px;

    transition: .3s;
}

.footer-social a:hover {

    background: #D52B1E;

    transform: translateY(-4px);
}

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, .1);

    text-align: center;

    padding: 25px 0;
}

.footer-bottom p {

    color: #94a3b8;

    margin: 0;
}

#priorities {
    background: #d3d3d36b;
}
/* Priorities: card look, border and hover expand */
#priorities .priority-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 16px;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s, border-color .2s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}

#priorities .priority-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
    border-color: rgba(192, 57, 43, 0.12);
}

#priorities .priority-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.06), rgba(34, 197, 94, 0.02));
    color: #c0392b;
    font-size: 28px;
    margin-bottom: 10px;
    transition: transform .28s;
}

#priorities .priority-card:hover .priority-icon {
    transform: scale(1.08);
}

#priorities .priority-title {
    font-weight: 600;
    margin: 4px 0 6px;
    font-size: 1.1rem;
}

#priorities .priority-line {
    width: 40px;
    height: 3px;
    background: #c0392b;
    margin: 8px auto 12px;
    border-radius: 3px;
    transition: width .28s;
}

#priorities .priority-card:hover .priority-line {
    width: 60px;
}

#priorities .priority-desc {
    color: #6b6b6b;
    font-size: 14px;
    text-align: center;
    /* margin-top: auto; */
}

#priorities .priority-desc .priority-list {
    list-style: disc;
    padding-left: 1.1rem;
    text-align: left;
    margin: 0;
}

#priorities .priority-desc .priority-list li {
    margin-bottom: 8px;
    color: #6b6b6b;
    font-size: 14px;
}
/* 
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #D52B1E;
} */
 .section-title {
  font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 25px;
 }

@media (max-width: 576px) {
    #priorities .priority-card {
        min-height: 150px;
        padding: 16px;
    }
}

.section-subtitle,
.section-subtitle-container {
    color: #D52B1E;
    font-weight: bold;
    text-decoration: underline;
}

/* Centered quote style for #whyami */
.center-quote {
    max-width: 820px;
    padding: 22px 28px;
    background: #ffffff;
    border-left: 6px solid #D52B1E;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
    font-size: 1.125rem;
    font-style: italic;
    color: #1f2937;
    line-height: 1.7;
    text-align: center;
}

.center-quote p { margin: 0; }

.blockquote-footer {
    margin-top: 10px;
    color: #6b7280;
    font-weight: 600;
}

@media (max-width: 576px) {
    .center-quote { padding: 16px 18px; font-size: 1rem; }
}
#whyami {
    
}
