.agc-carousel {
    margin: 15px 0;
    position: relative;
}
[type=button], [type=submit], button {
    border: 0px solid #c36!important;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: transparent!important;
}
.agc-slide {
    position: relative;
    padding: 0 40px;
    text-align: center;
}

.agc-slide img {
    width: 100%;
    height: auto;
    display: inline-block;
    max-width: 100%;
}

.agc-caption {
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
}

/* Custom arrow styles */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255,255,255,1);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    display: none;
}

.slick-prev svg,
.slick-next svg {
    width: 24px;
    height: 24px;
    fill: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 15px;
}

.slick-dots li button:before {
    font-size: 12px;
}