.main-hero {
    background-position: center;
    background-size: cover;
    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;
}

@media screen and (max-width: 768px) {

    .main-hero {
        background-position: center;
        background-size: cover;
        align-items: center;
        padding: 0;
    }

    .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;
    }
}

/* Company Snapshot Section */
.company-snapshot-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
}

.company-snapshot-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.company-snapshot-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.company-snapshot-content>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.company-snapshot-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-snapshot-text>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #1a1a1a;
}

.company-snapshot-data {
    width: 35%;
    flex: 0 0 35%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.transaction-card {
    width: 45%;
    flex: 1 1 45%;
    background-color: #F0F4F7;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transaction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.transaction-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.transaction-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transaction-value {
    font-family: Urbanist, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

@media screen and (max-width: 1024px) {
    .company-snapshot-container {
        padding: 60px 0px;
    }

    .company-snapshot-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .company-snapshot-content {
        flex: 1;
        width: 100%;
    }

    .company-snapshot-data {
        flex: 1;
        width: 100%;
    }

    .transaction-overview-container {
        padding: 60px 40px;
    }

    .transaction-overview-cards {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .transaction-overview-container {
        padding: 60px 40px;
    }

    .transaction-overview-wrapper>h2 {
        font-size: 2rem;
    }

    .transaction-overview-cards {
        gap: 16px;
    }

    .transaction-card {
        padding: 24px 20px;
    }

    .transaction-value {
        font-size: 1.382rem;
    }
}

@media screen and (max-width: 430px) {
    .company-snapshot-container {
        padding: 60px 0px;
    }

    .company-snapshot-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .company-snapshot-content {
        width: 100%;
    }

    .company-snapshot-data {

        width: 100%;
        display: flex;
    }

    .transaction-card {
        padding: 24px 20px;
    }

    .transaction-icon>svg {
        width: 40px;
        height: 40px;
    }

}


.document-container-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0 64px 0;
}

.document-container-main-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.document-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
    width: auto;
}

.document-col {
    background: #f0f2f4;
    padding: 64px 32px;
    display: flex;
    flex: 1 1 30%;
    flex-direction: column;
    gap: 64px;
    border-radius: 16px;
}

.document-icon-row {
    margin-bottom: 24px;
}

.document-title-row>h2>a {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-decoration: none;
}

.document-title-row>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: #666;
    margin-bottom: 8px;
}


@media screen and (max-width: 768px) {

    .document-row {
        flex-direction: column;
        gap: 48px;
    }

    .document-col {
        padding: 48px 24px;
        gap: 48px;
    }
}

@media screen and (max-width: 430px) {

    .document-container-main-header>h2 {
        margin-bottom: 32px;
    }
}