/* Features Section Styles */
.features-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 20px;
    width: 100%;
    margin-top: 60px;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 17px;
    width: 100%;
    max-width: 803px;
}

.features-heading {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 51px;
    color: #292929;
}

.features-description {
    width: 100%;
    font-family: "Karla", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #828282;
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 30px;
    width: 100%;
    max-width: 1469px;
    margin: 0 auto;
}

/* Two columns layout for feature cards */
.features-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 30px;
    width: 100%;
    filter: drop-shadow(4px 0px 4px rgba(0, 0, 0, 0.25));
    border-radius: 0;
}

/* Individual card styling */
.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    gap: 16px;
    border-radius: 24px;
}

.card-wrapper.red {
    background: #ff4c4b;
    flex: 1;
}

.card-wrapper.dark {
    background: #292929;
    box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.25);
    flex: 1;
}

.card-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
}

.card-title {
    font-family: "Karla", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    color: #ffffff;
    width: 100%;
}

.card-text {
    font-family: "Karla", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    width: 100%;
}

.card-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    border-radius: 10px;
    margin-top: 16px;
    text-decoration: none;
}

.card-button.white {
    background: #ffffff;
}

.card-button.red {
    background: #ff4c4b;
}

.card-button span {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.card-button.white span {
    color: #000000;
}

.card-button.red span {
    color: #ffffff;
}

.card-button i {
    width: 20px;
    height: 20px;
}

.card-button.white i {
    color: #000000;
}

.card-button.red i {
    color: #ffffff;
}

/* About section styling */
.about-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
    background: #f6f6f6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    margin-top: 30px;
}

.about-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    gap: 24px;
    width: 40%;
}

.about-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
}

.about-title {
    font-family: "Karla", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    color: #000000;
    width: 100%;
}

.about-text {
    font-family: "Karla", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    width: 100%;
}

.about-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    background: #000000;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 16px;
}

.about-button span {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}

.about-button i {
    color: #ffffff;
}

.image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 60%;
    height: 445px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-cards {
        flex-direction: column;
    }

    .card-wrapper {
        width: 100%;
    }

    .about-section {
        flex-direction: column;
    }

    .about-column {
        width: 100%;
    }

    .image-wrapper {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 0 10px;
    }

    .features-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .features-description {
        font-size: 20px;
        line-height: 26px;
    }

    .card-wrapper {
        padding: 40px;
    }

    .about-column {
        padding: 40px;
    }

    .image-wrapper {
        height: 300px;
    }
}
