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

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    background-color: #ffffff;
}

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

/* Hero Section - EU Style with gradient background */
.hero-section {
    background: linear-gradient(135deg, #003d82 0%, #0052cc 25%, #0066ff 50%, #4da6ff 75%, #b3d9ff 100%);
    color: #ffffff;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 30px 30px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.hero-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}

.hero-benefits li {
    font-size: 1.1rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #003d82;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Products Section */
.products-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #003d82;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
    border-color: #0052cc;
}

.product-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffef7 100%);
}

.product-card.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #003d82;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #003d82;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1.5rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: bold;
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #003d82 0%, #0052cc 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(45deg);
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    position: relative;
    z-index: 2;
}

.article-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 5rem 0;
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #003d82;
}

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

.review-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.08);
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.reviewer strong {
    color: #003d82;
    font-weight: 600;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
}

/* Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 5rem 0;
}

.specialists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #003d82;
}

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

.specialist-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    transition: transform 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-8px);
}

.specialist-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #003d82;
    margin-bottom: 0.5rem;
}

.title {
    color: #0052cc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specializations span {
    background: linear-gradient(45deg, #0052cc, #4da6ff);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #003d82 0%, #0052cc 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #003d82;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    background: #ffd700;
    padding: 4rem 0;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #003d82;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address h3 {
    font-family: 'Playfair Display', serif;
    color: #003d82;
    margin-bottom: 1rem;
}

.address p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-benefits ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .products-section,
    .reviews-section,
    .specialists-section {
        padding: 3rem 0;
    }

    .products-section h2,
    .reviews-section h2,
    .specialists-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .products-grid,
    .reviews-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card,
    .review-card,
    .specialist-card {
        padding: 1.5rem;
    }

    .article-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .article-section h3 {
        font-size: 1.5rem;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"],
    .subscribe-btn {
        width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .specializations {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-section h2,
    .reviews-section h2,
    .specialists-section h2 {
        font-size: 1.7rem;
    }

    .product-card h3,
    .specialist-card h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .article-section h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
