/* Guide Page Styles */

/* Guide Hero Section */
.guide-hero {
    margin-bottom: 2rem;
}

.guide-hero-content {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.guide-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.guide-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

/* Guide Content Sections */
.guide-intro, 
.guide-recommendations, 
.guide-comparison, 
.guide-tips, 
.guide-conclusion {
    margin-bottom: 3rem;
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Guide Conclusion */
.guide-conclusion {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .guide-features,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
