/* CTA Section Honey Styling */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F2CA80, #D4A017);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.cta-section::before {
    top: -50px;
    left: -50px;
    transform: rotate(15deg);
}

.cta-section::after {
    bottom: -50px;
    right: -50px;
    transform: rotate(30deg);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button styling override for this section */
.cta-section .btn.hexagon-btn {
    background: #8D6E63;
    color: #fff;
    transition: all 0.3s ease;
}

.cta-section .btn.hexagon-btn:hover {
    background: #6D4C41;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        margin-bottom: 20px;
        font-size: 28px;
    }
}
