.agc-wrapper-d183d0c3 {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fafbfc; /* Unified color matching Pixel Perfect Hero */
}

.agc-header-d183d0c3 {
    margin-bottom: 50px;
    max-width: 800px;
    width: 100%;
}

.agc-header-title-d183d0c3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agc-header-subtitle-d183d0c3 {
    font-size: 18px;
    color: #444;
    margin: 0;
    font-weight: 500;
}

.agc-grid-d183d0c3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.agc-card-d183d0c3 {
    background: #ffffff !important; /* Pure solid white */
    border-radius: 8px; /* Smooth rounded corners for elegant pop */
    box-shadow: 0 12px 35px rgba(0,0,0,0.06); /* Premium elegant shadow */
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3; /* Push to the topmost layer as requested */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.agc-card-d183d0c3:hover {
    transform: translateY(-8px); /* Elevates strongly on hover */
    box-shadow: 0 20px 45px rgba(0,0,0,0.12); /* Pop out even more on hover */
}

.agc-card-image-wrap-d183d0c3 {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: visible; /* Prevent clipping of absolute-positioned overlapping icon */
}

.agc-card-image-d183d0c3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px; /* Match outer card corners directly on the image */
    border-top-right-radius: 8px;
}

/* Overlapping card icon - positioned relative to image wrapper, visible and premium */
.agc-card-icon-d183d0c3 {
    position: absolute;
    bottom: -28px; /* Half of new height */
    left: 40px;
    background: #e66a1f;
    color: #fff;
    width: 56px; /* Reduced from 70px */
    height: 56px; /* Reduced from 70px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(230, 106, 31, 0.25);
    z-index: 10; /* Ensure icon is completely on top of everything */
}

.agc-card-icon-d183d0c3 svg,
.agc-card-icon-d183d0c3 i {
    fill: #fff;
    color: #fff;
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.agc-card-body-d183d0c3 {
    padding: 45px 35px 35px; /* Adjusted padding for smaller overlapping icon */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.agc-card-title-d183d0c3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a1a;
}

.agc-card-content-d183d0c3 {
    flex-grow: 1;
}

.agc-card-content-d183d0c3 ul,
.agc-card-content-d183d0c3 ol {
    list-style: none !important;
    padding: 0;
    margin: 0 0 25px 0;
}

.agc-card-content-d183d0c3 ul li,
.agc-card-content-d183d0c3 ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    list-style-type: none !important;
    color: #555;
}

.agc-card-content-d183d0c3 ul li::before,
.agc-card-content-d183d0c3 ol li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #e66a1f;
    font-size: 16px;
}

.agc-card-link-d183d0c3 {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: auto;
    color: #e66a1f;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.agc-card-link-d183d0c3:hover {
    color: #c55314;
}

@media (max-width: 1024px) {
    .agc-grid-d183d0c3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 767px) {
    .agc-grid-d183d0c3 {
        grid-template-columns: 1fr !important;
    }
}
