﻿.about-page-wrapper {
    max-width: 1200px;
    margin: 6rem auto;
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

    .about-page-wrapper .page-title {
        color: #0056b3;
        font-size: 1.875rem;
        font-weight: 600;
        margin-bottom: 3rem;
        text-align: center;
    }

.main-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}


    .main-section .illustration-block {
        width: 40%;
        border-radius: 0.5rem;
        box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    }

        .main-section .illustration-block img {
            width: 100%;
            height: 100%;
        }

    .main-section .text-block {
        color: #4a5568;
        width: 50%;
    }

.text-block .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

    .text-block .company-description .font-semibold {
        font-weight: 600;
    }

.text-block .contact-sales-button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
}

    .text-block .contact-sales-button:hover {
        background-color: #0056b3;
    }

.middle-text {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

    .middle-text .text-paragraph {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.6;
        color: #6b7280;
        font-style: italic;
    }

    .middle-text .section-divider {
        width: 50%;
        height: 2px;
        background-color: #f57620;
        margin: 2rem auto;
    }

.feature-areas {
    padding-top: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



    .feature-list .feature-item {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: #4a5568;
    }

        .feature-list .feature-item .feature-icon {
            margin-right: 0.75rem;
            width: 50px;
        }

        .feature-list .feature-item .font-semibold {
            font-weight: 600;
        }

        .feature-list .feature-item .text-sm {
            font-size: 0.875rem;
            color: #6b7280;
        }


.bottom-banner-wrapper {
    background-color: #dbf5fd;
    padding: 3rem 1.5rem;
    text-align: center;
}

.bottom-banner-con {
    max-height: 1200px;
    margin: auto;
}

.bottom-banner-wrapper .banner-text {
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3em;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}


.bottom-banner-wrapper .banner-text-2 {
    font-size: 1rem;
    color: #0027B7;
    margin-bottom: 3rem;
}


.bottom-banner-wrapper .contact-sales-button {
    text-decoration: none;
    background-color: #0027B7;
    color: white;
    padding: 10px 2rem;
    border-radius: 5px;
    font-size: 1rem;
}

@media (max-width: 930px) {
    .main-section .illustration-block {
        width: 60%;
    }
}

@media (max-width: 850px) {
    .main-section .illustration-block {
        width: 80%;
    }

    .text-block .company-description {
        font-size: 0.8rem;
    }
}


@media (min-width: 768px) {
    .about-page-wrapper {
        padding: 3rem;
    }
}


@media (max-width: 700px) {
    .main-section {
        align-items: start;
        flex-direction: column;
    }

        .main-section .illustration-block {
            width: 100%;
        }

        .main-section .text-block {
            width: 100%;
        }

    .text-block .company-description {
        font-size: 0.9rem;
    }
}
