/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
    --primary-color: #0055A4;
    --secondary-color: #F0F4F8;
    --accent-color: #FF6B00;
    --text-dark: #1A2B3C;
    --text-light: #FFFFFF;
    --border-radius: 8px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 1180px;
    margin: 0 auto;
    background-color: var(--secondary-color);
}

/* Header and Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

/* Offer Section */
#offer {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-image:
        linear-gradient(135deg, var(--primary-color), var(--accent-color)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.1) 0,
            rgba(255,255,255,0.1) 10px,
            transparent 10px,
            transparent 20px
        );
    background-blend-mode: overlay;
}

#offer p {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Sections Styling */
section {
    background-color: var(--text-light);
    margin: 2rem 0;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#specialists, #reviews {
    background-color: var(--secondary-color);
}

#products {
    background-color: #F9FAFB;
}

/* Article Styling */
article {
    background-color: #E9F0F5;
    padding: 1.5rem;
    border-left: 5px solid var(--primary-color);
    margin-top: 1rem;
}

/* Products Styling */
.product {
    background-color: var(--text-light);
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Styling */
#form {
    background-color: #F1F5F9;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

form input {
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: var(--accent-color);
}

/* Contact Section */
#contact {
    background-color: var(--secondary-color);
}

#contact iframe {
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    body {
        max-width: 100%;
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #offer {
        padding: 1rem;
    }

    section {
        padding: 1rem;
        margin: 1rem 0;
    }

    form {
        max-width: 100%;
    }

    .product, .specialist, .review {
        flex-basis: 100%;
    }
}

/* Specialist and Review Styles */
.specialist, .review {
    background-color: var(--text-light);
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}
