/* Basic styles for the individuals page */
body {
    background-color: #ffffff;
    color: #090909;
}

.hero-section {
    background: linear-gradient(to top, #4d7cf2 0.624%, #1758fe 95.571%);
    height: 668px;
    position: relative;
    width: 100%;
    color: white;
}
.hero-main-individuals-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 74px;
}
.download-app-btn {
    background-color: #ffffff05;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 8px 22px;
    font-size: 16px;
    cursor: pointer;
    display: flex
;
    align-items: center;
    gap: 4px;
}
.main-individuals-image img {
    width: 646px;
}
.main-individuals-image {
   order: 2;
}
.features-section {
    background-color: #1e2d53;
    padding: 80px 40px;
    position: relative;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.features-text {
    color: white;
    max-width: 570px;
    flex: 1;
}

.features-text h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 18px;
}

.features-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-text ul li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    padding-right: 45px;
}

[dir="ltr"] .features-text ul li {
    padding-right: 25px;
    padding-left: 45px;
}

.features-text ul li::before {
    content: '•';
    color: white;
    font-weight: bold;
    display: inline-block; 
    position: absolute;
    right: 25px;
    font-size: 24px;
}

[dir="ltr"] .features-text ul li::before {
    right: auto;
    left: 25px;
}

.features-image{
    position: absolute;
    left: 0;
}

[dir="ltr"] .features-image {
    left: auto;
    right: 0;
}

.features-image img {
    max-width: 100%;
    height: 776px;
}

.rtl-flip {
    transform: scaleX(-1);
}

body.dark-mode .features-section {
    background-color: #051640;
}

@media (max-width: 1130px) {
    .hero-main-individuals-content {
        padding: 0 20px;
    }
    .main-individuals-image img {
        width: 100%;
        height: auto;
    }
    .features-section {
        padding: 60px 20px;
    }
    .features-content {
        flex-direction: column;
    }
    .features-text {
        text-align: center;
    }
    .features-image {
        position: static;
        height: auto;
    }
    .features-image img {
        height: auto;
    }
    .features-text h2 {
        font-size: 32px;
        text-align: center;
    }
}
