:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: "poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #f5f7fa;
}

html {
    scroll-padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../images/affiliate-program-banner-img.webp") center/cover
            no-repeat;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000070;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2d3c69;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    /* font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; */
    font-size: 4.6rem;
    font-family: "Playfair Display";
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-section a {
    color: #fff;
    background-color: #2d3c69;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 11px 25px;
    text-decoration: none;
    font-size: 14px;
    line-height: 25px;
    border-radius: 21px;
    border: none;
    transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

.hero-section a:hover {
    background-color: #d5c28b;
    color: #2d3c69;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 25%);
}

.hero-section .container div div div {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.container {
    max-width: 86% !important;
}

.container h2 {
    font-size: 62px;
    color: #293857;
    font-family: "Playfair Display" !important;
}

.container h2 span {
    color: #f7a600;
}

/* accordion */
#amcob-benefits-section {
    font-family: "poppins";
    background: #f5f7fa;
    min-height: 100vh;
    padding: 60px 20px;
    color: #1a1a1a;
}

#amcob-benefits-container {
    max-width: 900px;
    margin: 0 auto;
}

#amcob-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

#amcob-benefits-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #0d1b2a;
    margin-bottom: 12px;
}

#amcob-benefits-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0.3px;
}

#amcob-benefits-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0 0%, #1a3a6b 100%);
    margin: 24px auto 0;
    border-radius: 2px;
}

#amcob-benefits-accordion {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.amcob-benefits-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.amcob-benefits-item:last-child {
    border-bottom: none;
}

.amcob-benefits-item:hover .amcob-benefits-item-header {
    background: #fafbfc;
}

.amcob-benefits-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    background: white;
    transition: background 0.2s ease;
    border-left: 3px solid transparent;
    min-height: 80px;
}

.amcob-benefits-item-header:hover {
    border-left-color: #293857;
}

.amcob-benefits-item-header.amcob-benefits-active {
    background: #f9fafb;
    border-left-color: #293857;
}

.amcob-benefits-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.amcob-benefits-header-text {
    flex: 1;
}

/* .amcob-benefits-header-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d1b2a;
    letter-spacing: -0.3px;
} */

.title {
    font-size: 62px;
    color: #293857;
    font-family: "Playfair Display" !important;
}

.title span {
    color: #f7a600;
}

.amcob-benefits-item-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #293857;
    font-weight: 600;
}

.amcob-benefits-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafbfc;
}

.amcob-benefits-item-content.amcob-benefits-active {
    max-height: 500px;
}

.amcob-benefits-item-body {
    padding: 0 32px 28px 88px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.growth-section {
    background: linear-gradient(135deg, #2d3c69, #2d3c69);
    padding: 100px 20px;
    margin: 60px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border-radius: 30px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shape-1 {
    position: absolute;
    top: -23%;
    left: -3%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(7px);
    background: rgb(255 255 255 / 7%);
    z-index: 1;
}

.shape-2 {
    position: absolute;
    bottom: -22%;
    right: -6%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(7px);
    background: rgb(255 255 255 / 7%);
    z-index: 1;
}

.growth-section h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.growth-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-amount {
    color: #2d3b68;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: "Playfair Display";
    font-variant: lining-nums;
    transition: all 0.3s ease;
}

.pricing-feature {
    color: #000 !important;
    font-size: 0.9rem;
    margin-bottom: 20px !important;
    font-family: "poppins";
}

.pricing-feature i {
    color: #2d3b68;
}

.btn-pricing {
    background-color: #d5c28b;
    border-color: #d5c28b;
    color: #2d3b68;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Poppins";
}

.btn-pricing:hover {
    background-color: #2d3b68;
    border-color: #2d3b68;
    transform: translateY(-2px);
    color: #fff;
}
.pricing-col.monthly {
    max-width: 414px;
}
/* .ctaSec-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.ctaSec-buttons a {
    background-color: #fff;
    color: rgb(41, 56, 87);
    padding: 10px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    font-family: "Poppins";
    cursor: pointer;
}

.ctaSec-buttons a:hover {
    background-color: #d5c28b;
    color: #2d3b68;
} */

@media (max-width: 768px) {
    #amcob-benefits-container {
        max-width: 100%;
    }

    #amcob-benefits-title {
        font-size: 1.8rem;
    }

    .amcob-benefits-item-header {
        padding: 18px 20px;
        min-height: auto;
    }

    .amcob-benefits-header-title {
        font-size: 0.95rem;
    }

    .amcob-benefits-item-body {
        padding: 0 20px 24px 72px;
        font-size: 0.9rem;
    }

    .hero-section .container div div div {
        gap: 10px;
        flex-direction: column;
        margin-top: 20px;
    }

    .container h2,
    .title,
    .growth-section h1 {
        font-size: 42px;
    }

    .container {
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .col-lg-4.col-md-6.pricing-col.monthly {
        padding: 0;
    }
    .flex.row.center.justify-content-center {
        padding: 0;
    }
}

@media (max-width: 480px) {
    #amcob-benefits-title {
        font-size: 1.5rem;
    }

    .amcob-benefits-item-header {
        padding: 16px;
    }

    .amcob-benefits-header-text {
        gap: 8px;
    }

    .amcob-benefits-header-title {
        font-size: 0.9rem;
    }

    .amcob-benefits-item-body {
        padding: 0 16px 20px 60px;
        font-size: 0.85rem;
    }
    .hero-section {
        min-height: 470px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .subHeading {
        font-size: 16px;
    }

    .hero-sub-title {
        font-size: 14px;
        margin: 0;
        text-align: center;
    }
    .btn-pricing {
        font-size: 0.8rem;
        padding: 0.75rem 0rem;
    }
    .growth-section p {
        font-size: 1rem;
    }
    .pricing-amount {
        font-size: 1.5rem;
    }
    .container h2,
    .title,
    .growth-section h1 {
        font-size: 32px;
    }
}
