/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Poppins:wght@300;400;500;600&display=swap');

/* Reset & Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #12396b;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #e67e22;
}

section {
    padding: 4rem 0;
}

/* Hero section - Block 1 */
.hero-section {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 0;
}

.hero-section h1, .hero-section h2 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h2 {
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.hero-section h2::after {
    content: none;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e67e22;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form section - Block 2 */
.form-section {
    background-color: #f1f8fe;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem 0;
}

.form-section h2 {
    text-align: center;
}

.form-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #e67e22;
    outline: none;
}

form .btn {
    display: block;
    width: 100%;
}

/* Services section - Block 3 */
.services-section {
    background-color: #fff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.price {
    font-weight: 600;
    color: #e67e22;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Article styling */
.article-section {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #12396b;
    margin-top: 3rem;
}

.article-section h2 {
    color: #12396b;
    font-size: 1.8rem;
}

article p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Specialists section - Block 4 */
.specialists-section {
    background-color: #fef8e8;
}

.specialists-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.specialist-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.specialist-card h3 {
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Reviews section - Block 5 */
.reviews-section {
    background-color: #12396b;
    color: #fff;
}

.reviews-section h2 {
    color: #fff;
    text-align: center;
}

.reviews-section h2::after {
    background-color: #e67e22;
    left: 50%;
    transform: translateX(-50%);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.review-card h3 {
    color: #fff;
}

.rating {
    color: #e67e22;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Contact section - Block 6 */
.contact-section {
    background-color: #fff;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Footer - Block 7 */
.footer-section {
    background-color: #12396b;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .services-container, 
    .specialists-container, 
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .form-section form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .article-section {
        padding: 1.5rem;
    }
}

/* Cookie notification styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 9999;
}

.cookie-notice button {
    background-color: #e67e22;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 1rem;
    cursor: pointer;
}