/* About Redesign Section */
.about-redesign {
    padding: 40px 0;
    background-color: #f9f9f9;
    /* Light background similar to the image */
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Image Side */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
    /* Ensure height matches content */
}

.years-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #00995e;
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 153, 94, 0.3);
    z-index: 2;
    border: 5px solid #fff;
}

.years-count {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.years-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

/* Content Side */
.about-content-wrapper {
    padding-right: 20px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Cards Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 153, 94, 0.1);
    color: #00995e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.about-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.btn-get-started {
    display: inline-block;
    background-color: #00995e;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #007a4b;
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        /* Image top */
    }

    .about-image-wrapper img {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}