.about-section {
    padding: 170px 0 0 50px;
    background: #ffffff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image img {
    width: 500px;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-tag {
    color: #7bc000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    color: #2d572c;
    margin: 15px 0;
}

.about-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 180px;
    text-align: center;
    transition: 0.3s;
}

.feature-box i {
    font-size: 28px;
    color: #7bc000;
    margin-bottom: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #7bc000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.about-btn:hover {
    background: #5fa000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}