/* ========================= GLOBAL ========================= */

body{
    font-family: Arial, sans-serif;
    background:#fff;
    color:#222;
    margin:0;
    padding:0;
}

.maxprime-container{
    width:100%;
}

/* ========================= HERO ========================= */

.hero-section{
    text-align:center;
    padding:90px 20px 70px;
}

.logo-midsize{
    width:220px;
    margin-bottom:15px;
}

.logo-bigsize{
    width:420px;
    margin-bottom:15px;
}

.hero-section h1{
    font-size:78px;
    line-height:1;
    color:#032B78;
    font-weight:normal;
    margin-bottom:15px;
}

.hero-section h2{
    font-size:32px;
    color:#6d6d6d;
    font-weight:normal;
    text-transform:uppercase;
    margin-bottom:30px;
}

/* ========================= PRODUCT ========================= */

.product-section{
    padding:90px 0;
    border-top:1px solid #d8d8d8;
}

.product-content{
    width:1250px;
    max-width:95%;
    margin:auto;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:70px;
}

.reverse .product-content{
    flex-direction:row-reverse;
}

/* ========================= TEXT ========================= */

.product-text{
    flex:1;
}

.product-text h2{
    font-size:44px;
    color:#032B78;
    font-weight:normal;
    margin-bottom:22px;
    text-transform:uppercase;
}

.product-text p{
    font-size:18px;
    line-height:1.7;
    color:#444;
    margin-bottom:25px;
}

/* ========================= FEATURE LIST ========================= */

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

/* ================= FEATURE ROW ================= */

.feature-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
}

.feature-collapsible {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.feature-list.expanded .feature-collapsible {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

/* ================= COLLAPSIBLE WRAPPER ================= */
/* hidden rows default state */
.feature-row.hidden {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}


/* expanded state */
.feature-list.expanded .feature-row.hidden {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px; /* enough for content */
    pointer-events: auto;
}

/* ================= ICON ================= */

.feature-icon{
    width:36px;
    height:36px;
    margin-top:2px;
}

/* ================= TEXT ================= */

.feature-text{
    display:flex;
    flex-direction:column;
}

.feature-title{
    font-size:16px;
    color:#032B78;
    font-weight:bold;
}

.feature-desc{
    font-size:14px;
    color:#444;
    margin-top:3px;
}

/* ================= PRICE IMAGES ================= */

.price-boxes{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:12px;
}

.price-box-img img{
    width:auto;
    max-width:460px;
    height:auto;
    display:block;
}

/* ================= MORE ITEMS ================= */

.more-item{
    font-size:14px;
    color:#444;
    margin:4px 0;
    font-weight:bold;
}

.check-icon{
    color:green;
    margin-right:6px;
}

/* ================= ACTION BUTTONS ================= */

.action-buttons{
    display:flex;
    gap:8px;
    margin-top:8px;
    align-items:center;
}

/* ================= BUTTONS ================= */

.btn-learn,
.btn-subscribe{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:120px;
    padding:6px 12px;
    font-size:12px;
    line-height:1;

    border-radius:4px;
    border:none;
    cursor:pointer;

    white-space:nowrap;
}

.btn-learn{
    background:#032B78;
    color:#fff;
}

.btn-subscribe{
    background:#d40000;
    color:#fff;
}

.btn-learn:hover,
.btn-subscribe:hover{
    opacity:0.85;
}

/* ================= IMAGE ================= */

.product-image img{
    width:100%;
    max-width:560px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){
    .product-content{
        flex-direction:column;
    }

    .product-text h2{
        font-size:32px;
    }

    .hero-section h1{
        font-size:56px;
    }

    .hero-section h2{
        font-size:24px;
    }
}

@media(max-width:768px){
    .logo-midsize{width:90px;}
    .hero-section h1{font-size:44px;}
    .hero-section h2{font-size:20px;}
    .product-text h2{font-size:28px;}
}