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

.hero-section {
    background: linear-gradient(0deg, #B159E3 0%, #A653E6 7%, #8C45EE 29%, #7A3BF4 51%, #6F35F7 74%, #6C34F9 100%);
    height: 708px;
    position: relative;
    width: 100%;
    color: white;
}

.business-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 100px;
    flex-direction: row;
}

.hero-text-content {
    max-width: 648px;
    text-align: right;
}

[dir="ltr"] .hero-text-content {
    text-align: left;
}

.hero-text-content h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 62px;
}

.hero-text-content p {
    font-size: 24px;
    line-height: 38px;
    margin: 20px 0;
}

.hero-text-content .read-more-btn {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

.hero-image-content img {
    max-width: 713px;
    height: 411px;
}

.target-audience-section {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}

.target-audience-section h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 60px;
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.audience-card {
    background-color: #f3f5fb;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
}

[dir="ltr"] .audience-card {
    text-align: left;
}

.audience-icon {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 76px;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.audience-card h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.audience-card p {
    font-size: 20px;
    line-height: 28px;
    color: #4a4a4a;
}
.register-company-btn-dark {
    background-color: #f5f5f5;
    color: #090909;
    border: 0;
    border-radius: 99px;
    padding: 13px 31px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 100px;
}
.features-section {
    background-color: #1e2d53;
    padding: 0px 40px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.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;
}

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

body.dark-mode .target-audience-section,
body.dark-mode .features-business-section {
    background-color: #051640;
}

body.dark-mode .target-audience-section h2,
body.dark-mode .features-business-section h2,
body.dark-mode .audience-card h3,
body.dark-mode .features-business-card p {
    color: #fff;
}

body.dark-mode .audience-card p {
    color: #a0aec0;
}

body.dark-mode .audience-card {
    background-color: #1E2D53;
}

body.dark-mode .features-business-card {
    background-color: #1E2D53;
}

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

.features-business-section {
    background-color: #f3f5fb;
    padding: 110px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.features-business-section h2 {
    font-size: 50px;
    font-weight: 600;
    color: black;
    margin: 0;
}

.features-business-section .subtitle {
    font-size: 24px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 0 40px 0;
}

.features-business-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.features-business-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    width: 227px;
    height: 208px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}

.features-business-icon {
    background-color: white;
    border-radius: 76px;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-business-icon img {
    width: 24px;
    height: 24px;
}

.features-business-card p {
    font-size: 20px;
    font-weight: 500;
    color: black;
    text-align: center;
    line-height: 26px;
    margin: 0;
}

@media (max-width: 1130px) {
    .business-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    .hero-text-content {
        align-items: center;
    }
    .hero-image-content img {
        width: 100%;
    }
    .target-audience-section, .features-business-section, .services-section {
        padding: 60px 20px;
    }
    .target-audience-grid, .features-business-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .features-business-grid {
        flex-direction: column;
        align-items: center;
    }
    .features-business-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 20px;
    }
    .features-section {
        padding: 60px 20px;
    }
    .features-content {
        flex-direction: column;
        gap: 40px;
    }
    .features-text {
        text-align: center;
        padding: 0;
    }
    .features-image {
        position: static;
        height: auto;
    }
    .features-image img {
        height: auto;
    }
    .audience-icon {
        width: 44px;
        height: 65px;
       
    }
    .audience-icon img {
        width: 24px;
        height: 24px;
       
    }
    .hero-text-content h1 {
        font-size: 32px;
    }
    .hero-text-content p {
        font-size: 18px;
    }
    .target-audience-section h2 {
        font-size: 32px;
        text-align: center;
    }
    .features-business-section h2 {
        font-size: 32px;
        text-align: center;
    }
    .audience-card h3 {
        font-size: 24px;
    }
    .audience-card p {
        font-size: 18px;
    }
    .features-text h2 {
        font-size: 32px;
        text-align: center;
    }
}