/* Recipe styles */
.detail-title.recipe::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffd700'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.recipe-instructions {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Three-column layout for food details */
.food-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

/* Responsive design for three columns */
@media (max-width: 768px) {
    .food-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    margin: 0;
}

.content-section.gray {
    background: #f8f9fa;
}

.content-section.white {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-content {
    max-width: 850px !important;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design for content sections */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .section-content p {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 850px !important;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #2c3e50;
    padding: 20px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #333;
}

.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #333;
}

.faq-answer {
    color: #6c757d;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 20px;
    margin: 0 0 20px 0;
    border-radius: 0;
    opacity: 1;
}

.faq-answer ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section .section-title {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .generate-btn {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-section .generate-btn:hover {
    background: transparent;
    color: white;
}

/* Responsive design for FAQ and CTA */
@media (max-width: 768px) {
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
    }
} 