.about_page_section {
    position: relative;
    background: url('../img/services.jpg') no-repeat center center/cover;
    height: 100vh;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: var(--white);
}

.about_page_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.315);
}

.about_page_section .about_banner {
    position: absolute;
    font-family: var(--poppins-400);
    max-width: 700px;
    font-size: 32px;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.privacy-title {
    font-size: 32px;
    font-family: var(--poppins-600);
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.privacy-heading {
    font-family: var(--poppins-500);
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.service-text {
    font-family: var(--poppins-500);
    color: var(--black);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-policy {
    background-color: var(--lightcolor);
    padding: 60px 20px;
    border-radius: 10px;
}

.privacy-title {
    font-size: 32px;
    font-family: var(--poppins-600);
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.privacy-heading {
    font-family: var(--poppins-500);
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.privacy-text {
    font-family: var(--poppins-400);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.privacy-subtitle {
    font-family: var(--poppins-500);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--black);
}

/* Projects Start */

.project-card {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.project-card img {
    /* width: 100%;
    height: auto; */
    width: 100%;
    aspect-ratio: 1/1;
    text-align: center;
    object-fit: cover;
    border-radius: 5px;
    /* margin-bottom: 20px; */
}

.project-card .work_title {
    font-family: var(--poppins-400);
    font-size: 28px;
    color: var(--black);
}

.project-card small {
    display: block;
    font-family: var(--poppins-400);
    color: var(--text-dark);
    font-size: 14px;
}

.project-card img {
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.project-card:hover img {
    transform: scale(1.01);
    box-shadow: 0 0 20px #221e1f;
}

.privacy-highlight-quote {
    position: relative;
    background: #b1c2d2;
    padding: 25px 30px;
    border-left: 6px solid #2c4c59;
    font-style: italic;
    font-weight: 500;
    color: var(--black);
    border-radius: 6px;
    font-size: 18px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-highlight-quote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 2px;
    font-size: 60px;
    color: #2c4c5980;
}

/* ----------- FAQ Start ----------- */

.faq-title p {
    font-family: var(--poppins-400);
    color: var(--text-dark);
    font-size: 16px;
    margin-top: 10px;
}

.faq-section .accordion-button {
    background: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.faq-section .accordion-button::after {
    display: none;
}

.faq-section .accordion-button .icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button.collapsed .icon::before {
    content: '+';
}

.faq-section .accordion-button:not(.collapsed) .icon::before {
    content: '–';
}

.faq-section .accordion-body {
    font-family: var(--poppins-400);
    color: var(--text-dark);
    font-size: 16px;
    padding-top: 0;
}

/* ----------- FAQ End ----------- */