.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 163, 58, 0.08) 0%, rgba(60, 163, 58, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.about-us::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 29, 30, 0.06) 0%, rgba(221, 29, 30, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 1;
}

.container-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 100%;
    min-width: 300px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(60, 163, 58, 0.3);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: -1;
    transform: rotate(-2deg);
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(1.05);
    aspect-ratio: 4/3;
}

.main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
    max-width: 100%;
    min-width: 300px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0.5s forwards;
    position: relative;
}

.highlight-title {
    font-size: 3rem;
    font-weight: 400;
    color: #121212;
    font-family: 'Alfa Slab One', sans-serif;
    margin-bottom: 35px;
    line-height: 1.1;
    position: relative;
}

.highlight {
    position: relative;
    display: inline-block;
    color: #3CA33A;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 40px;
}

.highlight::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #3CA33A;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    position: relative;
    z-index: 2;
}

.about-text::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(221, 29, 30, 0.05) 0%, rgba(221, 29, 30, 0) 70%);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.btn-wrapper {
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.btn-meet-team {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    background-color: #DD1D1E;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(221, 29, 30, 0.2);
}

.btn-meet-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #3CA33A;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-meet-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(221, 29, 30, 0.3);
}

.btn-meet-team:hover::before {
    width: 100%;
}


.menu-boxes {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-boxes::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233ca33a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.container-boxes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
}

.box {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
    animation-delay: calc(0.15s * var(--i, 1));
    height: 100%;
    display: flex;
    flex-direction: column;
}

.box:nth-child(1) { --i: 1; }
.box:nth-child(2) { --i: 2; }
.box:nth-child(3) { --i: 3; }
.box:nth-child(4) { --i: 4; }

.box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.boxes-h1 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #121212;
    font-family: 'Alfa Slab One', sans-serif;
    padding: 20px;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.boxes-h1::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #3CA33A;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.box:hover img {
    transform: scale(1.05);
}

.box:hover .boxes-h1::after {
    width: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .highlight-title {
        font-size: 2.5rem;
    }
    
    .container-boxes {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-image, .about-text {
        width: 100%;
        max-width: 100%;
    }
    
    .highlight-title {
        font-size: 2.2rem;
    }
    
    .about-image::before {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 70px 0;
    }
    
    .highlight-title {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .container-boxes {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .box img {
        height: 200px;
    }
}