@import url(../global.css);

.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/notice-for-shareholders-banner.jpg");
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/notice-for-shareholders-banner.jpg");
    }
}

/* Base Styles */
.accordion {
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.accordion-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.accordion-tab {
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    padding: 16px 32px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 16px;
}

.accordion-tab:last-child {
    border-right: none;
}

.accordion-tab.active {
    background-color: #141E47;
    color: #fff;
}

.accordion-content-container {
    display: block;
}

.accordion-content {
    display: none;
    padding: 32px 0;
    border-top: 1px solid #ccc;
}

/* Responsive Styles for Mobile */
@media (max-width: 430px) {
    .accordion-tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .accordion-tab {
        border-bottom: 1px solid #ccc;
        border-right: none;
        text-align: left;
        padding-left: 20px;
    }

    .accordion-tab.active+.accordion-content {
        display: block;
    }
}

.document-main {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.document-container > h3 { 
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

/* CTA Section */

.footer-cta-section {
    display: flex;
    background-color: #212121;
}

.cta-section-left,
.cta-section-right {
    width: 50%;
}

.cta-section-left {
    padding: 128px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
}

.cta-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-header>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #fff;
}

.cta-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #fff;
}

.cta-section-right {
    padding: 50px;
    background-image: url('../../assets/corporate-meeting.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
    .footer-cta-section {
        display: flex;
        flex-direction: column;
        background-color: #212121;
    }

    .cta-section-left,
    .cta-section-right {
        width: 100%;
    }

    .cta-section-left {
        padding: 64px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 64px;
    }

    .cta-header {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cta-section-right {
        display: none;
    }
}

@media screen and (max-width:430px) {
    .cta-section-left {
        padding: 64px 40px;
        gap: 32px;
    }

    .cta-header {
        gap: 8px;
    }

    .cta-header>h4 {
        font-family: Urbanist, sans-serif;
        font-size: 1.618rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
        color: #fff;
    }

    .cta-header>p {
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }
}