.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), url("../../../assets/banners/men-in-business-meeting-min.png") center/cover no-repeat;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.hero-header>p {
    width: 45%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../../assets/banners/men-in-business-meeting-min.png") 80% center/cover no-repeat;
        padding: 0px;
        align-items: center;
    }

    .hero-header {
        padding: 40px;
    }

    .hero-header>h1 {
        width: 100%;
    }

    .hero-header>p {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 0px;
    }

    .hero-header {
        padding: 20px;
    }

    .hero-header>h1 {
        font-size: 2.617rem;
    }
}

/* Introductory Section Styles */
.intro-section {
    padding: 80px 0;
}

.intro-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px;
}

.vision-section {
    margin-bottom: 80px;
}

.vision-heading {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 900px;
}

.success-stories-section {
    margin-bottom: 80px;
}



.success-stories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.team-photo-container {
    width: 100%;
}

.team-photo {
    width: 100%;
    height: auto;
    /* aspect-ratio: 1/1; */
    border-radius: 16px;
    object-fit: cover;
}

.success-stories-text-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 12px;
}

.success-stories-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.success-stories-text p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #1a1a1a;
}

.metrics-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

.metric-item-header {
    flex: 0 0 40%;
}

.metric-number {
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
}

.metric-odometer {
    display: inline-flex;
    align-items: flex-end;
    line-height: 1;
    vertical-align: bottom;
}

.metric-odometer-digit {
    display: inline-block;
    height: 1em;
    min-width: 0.62em;
    overflow: hidden;
    vertical-align: bottom;
}

.metric-odometer-track {
    display: block;
    transform: translateY(0);
    will-change: transform;
}

.metric-odometer-track>span {
    display: block;
    height: 1em;
    line-height: 1em;
    text-align: center;
}

.metric-odometer-static {
    display: inline-block;
    line-height: 1em;
}

.metric-label {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    color: #1a1a1a;
}

.metric-description {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.metric-description p {
    max-width: 420px;
    margin: 0;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.618;
    color: #666;
}

.metric-divider {
    border: 0;
    border-top: 1px solid #d0d4db;
    margin: 0;
}

/* Responsive Styles for Introductory Section */
@media screen and (max-width: 1024px) {
    .vision-heading {
        font-size: 2.8rem;
    }

    .success-stories-content {
        gap: 48px;
    }

    .metrics-section {
        gap: 48px;
    }
}

@media screen and (max-width: 768px) {
    .intro-section {
        padding: 60px 0;
    }

    .intro-container {
        padding: 0 40px;
    }

    .vision-section {
        margin-bottom: 60px;
    }

    .vision-heading {
        width: 100%;
    }

    .success-stories-section {
        margin-bottom: 60px;
    }

    .success-stories-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-photo {
        aspect-ratio: 1/1;
    }

    .metrics-section {
        gap: 40px;
    }

    .metric-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .metric-item-header {
        flex: 0 0 auto;
        width: 100%;
    }

    .metric-description {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .metric-description p {
        max-width: 100%;
    }

}

@media screen and (max-width: 430px) {
    .intro-section {
        padding: 40px 0;
    }

    .intro-container {
        padding: 0 20px;
    }

    .vision-section {
        margin-bottom: 40px;
    }

    .success-stories-section {
        margin-bottom: 40px;
    }

    .success-stories-text-container {
        padding: 0;
    }

    .success-stories-text p {
        font-size: 1rem;
    }
}

/* 4 Cornerstones Section */
.cornerstones-section {
    width: 100%;
    background-color: #000000;
    padding: 0;
}

.cornerstones-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
}

.cornerstones-left {
    width: 40%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cornerstones-right {
    width: 60%;
    padding: 128px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cornerstones-right h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.cornerstones-title-underline {
    width: 80px;
    height: 4px;
    background-color: #fff;
    margin-top: -32px;
}

.cornerstones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cornerstones-card {
    background-color: #101010;
    padding: 64px 32px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cornerstones-card-number {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: Urbanist, sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.cornerstones-card h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cornerstones-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .cornerstones-section {
        padding: 0;
    }

    .cornerstones-container {
        padding: 0px;
    }

    .cornerstones-right {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .cornerstones-section {
        padding: 64px 0 0 0;
    }

    .cornerstones-container {
        flex-direction: column;
        padding: 0;
    }

    .cornerstones-left {
        width: 100%;
        height: 500px;
    }

    .cornerstones-right {
        width: 100%;
        padding: 48px 32px;
        gap: 32px;
    }

    .cornerstones-right h2 {
        font-size: 2.2rem;
    }

    .cornerstones-grid {
        gap: 20px;
    }

    .cornerstones-card {
        padding: 28px 24px;
    }

    .cornerstones-card-number {
        font-size: 6rem;
    }
}

@media screen and (max-width: 430px) {
    .cornerstones-right {
        padding: 64px 20px;
        gap: 24px;
    }

    .cornerstones-right h2 {
        font-size: 1.8rem;
    }

    .cornerstones-title-underline {
        width: 60px;
        height: 3px;
    }

    .cornerstones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cornerstones-card {
        padding: 48px 32px;
        gap: 12px;
    }

    .cornerstones-card-number {
        font-size: 6.8rem;
    }

    .cornerstones-card h3 {
        font-size: 1.4rem;
    }

    .cornerstones-card p {
        font-size: 0.9rem;
    }
}

/* Why Choose Us - IPO Accordion Section (below 4 Cornerstones) */
.why-choose-ipo-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
}

.why-choose-ipo-container {
    /* max-width: 1440px;
    margin: 0 auto; */
    display: flex;
    align-items: stretch;
    gap: 0;
}

.why-choose-ipo-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
}

.why-choose-ipo-content {
    width: 55%;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #ffffff;
}

.why-choose-ipo-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-ipo-header h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #141E47;
    margin: 0;
}

.why-choose-ipo-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-choose-ipo-item {
    border-bottom: 1px solid #E1E4EA;
    padding: 16px 0;
}

.why-choose-ipo-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
    cursor: pointer;
}

.why-choose-ipo-question span:first-child {
    font-family: Urbanist, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #212121;
    text-align: left;
}

.why-choose-ipo-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.why-choose-ipo-icon::before,
.why-choose-ipo-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #141E47;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-choose-ipo-icon::after {
    display: none;
}

.why-choose-ipo-item.open .why-choose-ipo-icon::after {
    display: none;
}

.why-choose-ipo-item.open .why-choose-ipo-icon::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.why-choose-ipo-answer {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 220ms ease;
    margin-top: 0;
}

.why-choose-ipo-item.open .why-choose-ipo-answer {
    opacity: 1;
    margin-top: 12px;
}

.why-choose-ipo-answer p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .why-choose-ipo-content {
        padding: 64px 56px;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-ipo-section {
        padding: 64px 0;
    }

    .why-choose-ipo-container {
        flex-direction: column-reverse;
    }

    .why-choose-ipo-image {
        width: 100%;
        min-height: 360px;
    }

    .why-choose-ipo-content {
        width: 100%;
        padding: 40px 32px;
        gap: 24px;
    }

    .why-choose-ipo-header h2 {
        font-size: 2.2rem;
    }

    .why-choose-ipo-question span:first-child {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 430px) {
    .why-choose-ipo-section {
        padding: 48px 0;
    }

    .why-choose-ipo-image {
        min-height: 280px;
    }

    .why-choose-ipo-content {
        padding: 32px 20px;
    }

    .why-choose-ipo-header h2 {
        font-size: 1.8rem;
    }

    .why-choose-ipo-question span:first-child {
        font-size: 1.05rem;
    }

    .why-choose-ipo-icon {
        width: 28px;
        height: 28px;
    }
}

/* Company Listing Cards */
.company-listing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 50px;
}

.recent-transactions-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.recent-transactions-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #212121;
    max-width: 80%;
}

.company-listing-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}

.company-listing-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.company-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.company-card-header {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.company-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    /* text-transform: uppercase; */
    text-align: left;
    z-index: 2;
    word-wrap: break-word;
}

.ipo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #104b88;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.company-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.company-value-date {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-value {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    flex: 1;
}

.value-date-separator {
    width: 1px;
    height: 24px;
    background-color: #ddd;
}

.company-date {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: #666;
}

.company-card-separator {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #999;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.company-card-footer {
    padding-top: 8px;
}

.view-transaction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #003366;
    text-decoration: none;
    border-bottom: 2px solid #003366;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.view-transaction-link:hover {
    color: #0a3a6b;
    border-color: #0a3a6b;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .company-listing-container {
        padding: 64px 40px;
    }

    .company-listing-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .company-listing-container {
        padding: 48px 40px;
    }

    .company-listing-row {
        gap: 24px;
    }

    .company-listing-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .company-card-header {
        height: 200px;
    }

    .company-card-header::before {
        height: 55%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .company-name-overlay {
        font-size: 1.382rem;
        padding: 20px 16px;
        line-height: 1.3;
    }

    .company-value {
        font-size: 1.382rem;
    }
}

@media screen and (max-width: 430px) {
    .company-listing-container {
        padding: 48px 20px;
    }

    .company-listing-row {
        gap: 20px;
    }

    .company-card-body {
        padding: 20px;
    }

    .company-card-header {
        height: 180px;
    }

    .company-card-header::before {
        height: 60%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .company-name-overlay {
        font-size: 1.2rem;
        padding: 16px;
        line-height: 1.3;
    }

    .ipo-badge {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .company-value {
        font-size: 1.2rem;
    }

    .company-date {
        font-size: 0.85rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }

    .view-transaction-link {
        font-size: 0.9rem;
    }
}

/* Insights Section */
.insights-section {
    padding: 96px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.insights-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.insights-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.insights-section-header h2 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #212121;
    margin: 0;
}

.insights-explore-btn {
    align-self: flex-start;
    padding: 12px 24px;
    border: 1px solid #212121;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #212121;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insights-explore-btn:hover {
    background-color: #212121;
    color: #ffffff;
}

.insights-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.insights-main-col {
    width: 55%;
}

.insights-side-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-featured-post {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 24px;
}

.insights-featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.insights-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-featured-image:hover img {
    transform: scale(1.05);
}

.insights-featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insights-category {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insights-featured-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-featured-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-featured-content h3 a:hover {
    color: #2B46BA;
}

.insights-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.insights-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.insights-read-time {
    color: #666;
}

.insights-separator {
    color: #666;
    margin: 0 4px;
}

.insights-date {
    color: #666;
}

.insights-side-post {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.insights-side-image {
    width: 30%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.insights-side-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-side-image:hover img {
    transform: scale(1.05);
}

.insights-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insights-side-image:hover .insights-video-overlay {
    opacity: 1;
}

.insights-video-overlay svg {
    width: 32px;
    height: 32px;
}

.insights-side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.insights-side-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-side-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-side-content h3 a:hover {
    color: #2B46BA;
}

.insights-side-content .insights-meta {
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .insights-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .insights-main-col,
    .insights-side-col {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .insights-section {
        padding: 64px 0;
    }

    .insights-section-header {
        margin-bottom: 48px;
    }

    .insights-section-header h2 {
        width: 90%;
    }

    .insights-side-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {
    .insights-section {
        padding: 48px 0;
    }

    .insights-section-header {
        margin-bottom: 32px;
    }

    .insights-side-post {
        gap: 12px;
    }

    .insights-category,
    .insights-read-time,
    .insights-separator,
    .insights-date {
        font-size: 0.75rem;
    }

}



/* FAQ Section */

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.faq-header {
    padding: 64px 0;
}

.faq-header>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.faqs {
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-col {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px 4px;
    border-bottom: 1px solid #a0a9cf;
}

.faq-item.open .faq-answer {
    opacity: 1;
    padding: 10px;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.faq-question>h2 {
    font-family: Urbanist;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 250ms ease;
    padding: 0 10px;
}

.faq-answer>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    color: var(--body-text);
}

.faq-answer ul {
    list-style-type: disc;
    padding: 10px 20px;
    /* padding-left: 20px; */
}

.faq-answer ul li {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: var(--body-text);
}

@media screen and (max-width: 768px) {
    .faqs {
        padding: 20px 0;
        flex-direction: column;
    }

    .faq-col {
        width: 100%;
    }

    .faq-question>h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {

    .faq-header {
        padding: 48px 0;
    }

    .faq-item {
        padding: 24px 4px;
    }

    .faq-question>svg {
        width: 24px;
        height: 24px;

    }

    .faq-question>h2 {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .faq-answer>p {
        font-size: 1rem;
    }
}
