/* About */
.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    margin-bottom: 25px;
    font-size: 36px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature i {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}
