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

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

:root {
    --interpol-blue: #0046ad;
    --interpol-dark-blue: #002d6e;
    --interpol-light-blue: #0074d9;
    --interpol-red: #e6002e;
    --interpol-gold: #daa520;
    --light-color: #f5f5f5;
    --dark-color: #222222;
    --gray-color: #444444;
    --light-gray: #f2f2f2;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--interpol-dark-blue);
}

h1 {
    font-size: 2.5rem;
    color: var(--light-color);
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--interpol-red);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--interpol-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--interpol-red);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero/Offer Section */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, var(--interpol-dark-blue) 0%, var(--interpol-blue) 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff10' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--interpol-dark-blue) 0%, var(--interpol-blue) 100%);
    color: var(--light-color);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    padding: 60px 20px;
}

.hero-section h2 {
    color: var(--light-color);
    text-align: left;
    padding-bottom: 0;
}

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

.hero-section p {
    margin-bottom: 25px;
    max-width: 600px;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--interpol-red);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #c5002a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 46, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--interpol-blue);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--interpol-blue);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: var(--interpol-blue);
    color: white;
}

/* Products Section */
.products-section {
    background-color: var(--light-gray);
    position: relative;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card h3 {
    color: var(--interpol-dark-blue);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--interpol-red);
    margin: 15px 0;
}

/* Article Section */
.article-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--interpol-gold);
}

.article-section h3 {
    color: var(--interpol-dark-blue);
    font-size: 1.5rem;
}

.article-section p {
    margin-bottom: 15px;
}

/* Specialists Section */
.specialists-section {
    background-color: var(--interpol-dark-blue);
    color: var(--light-color);
}

.specialists-section h2 {
    color: var(--light-color);
}

.specialists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.specialist-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.specialist-card h3 {
    color: var(--light-color);
}

.position {
    color: var(--interpol-gold);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

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

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

.review-card::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80px;
    color: rgba(0, 70, 173, 0.1);
    font-family: 'Georgia', serif;
}

.stars {
    color: var(--interpol-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Form Section */
.form-section {
    background-color: var(--light-gray);
    text-align: center;
}

.form-section .container {
    max-width: 600px;
}

.form-section p {
    margin-bottom: 30px;
}

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

input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--interpol-blue);
    box-shadow: 0 0 0 2px rgba(0, 70, 173, 0.2);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

address {
    text-align: center;
    font-style: normal;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 50px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .products-container,
    .specialists-container,
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card,
    .specialist-card,
    .review-card {
        min-width: 100%;
    }

    .hero-section {
        padding: 30px 0;
    }

    form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .container {
        padding: 40px 15px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-card,
    .specialist-card,
    .review-card {
        padding: 20px;
    }
}
