/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

header .location {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
    font-weight: 600;
}

/* About Section */
#about {
    background-color: white;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #555;
}

/* Reviews Section */
.reviews-section {
    background-color: #f9f9f9;
}

.reviews-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffa500;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.stars.large {
    font-size: 2rem;
}

.rating-text {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

.review-author {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.review-text {
    color: #555;
    line-height: 1.7;
}

.review-text p {
    margin-bottom: 10px;
}

/* Info Section */
.info-section {
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li:before {
    content: "✓ ";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

.overall-rating {
    text-align: center;
}

.rating-summary {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f9f9f9;
    border-top: 3px solid #1a1a2e;
}

.disclaimer-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section strong {
    color: #1a1a2e;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header .location {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
