.feedback-cta-section {
    padding: 70px 10%;
    position: relative;
    background-image: url('https://static.vecteezy.com/system/resources/previews/004/616/958/non_2x/zodiac-sign-wheel-of-fortune-astrology-concept-free-photo.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.feedback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.feedback-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-header {
    margin-bottom: 40px;
}

.feedback-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feedback-header .highlight {
    color: #ff5100;
}

.feedback-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.feedback-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.feedback-image {
    flex: 0 0 30%;
    max-width: 200px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.feedback-image img {
    width: 100%;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feedback-text {
    flex: 0 0 60%;
    text-align: left;
    max-width: 600px;
}

.feedback-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff5100;
}

.feedback-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feedback-button {
    background-color: #ff5100;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feedback-button i {
    font-size: 1.4rem;
}

.feedback-button:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #ff5100;
    box-shadow: 0 6px 12px rgba(255, 81, 0, 0.3);
}

.feedback-button:active {
    transform: scale(0.95);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .feedback-cta-section {
        padding: 50px 5%;
    }
    
    .feedback-header h2 {
        font-size: 2rem;
    }
    
    .feedback-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .feedback-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .feedback-text {
        text-align: center;
    }
    
    .feedback-image {
        max-width: 180px;
    }
    
    .feedback-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feedback-header h2 {
        font-size: 1.7rem;
    }
    
    .feedback-text h3 {
        font-size: 1.5rem;
    }
}