/* Глобальные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #0F1111;
    background-color: #EAEDED;
}

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

/* Blok 1: Hero Section - styl Amazon */
.hero-section {
    background: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
    color: #FFFFFF;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #FF9900;
    color: #0F1111;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #FF9900;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #FFA724;
    border-color: #FFA724;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Sekcja specjalistów */
.specialists-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.specialists-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #0F1111;
}

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

.specialist-card {
    background-color: #F7F7F7;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #FF9900;
}

.specialist-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0F1111;
}

.specialist-role {
    color: #565959;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.specialist-card p {
    color: #0F1111;
    font-size: 14px;
    line-height: 1.6;
}

/* Sekcja opinii */
.reviews-section {
    background-color: #F3F3F3;
    padding: 60px 20px;
}

.reviews-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #0F1111;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F1111;
}

.review-text {
    color: #0F1111;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-date {
    color: #565959;
    font-size: 12px;
}

/* Formularz opinii */
.review-form-section {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
    max-width: 600px;
    margin: 0 auto;
}

.review-form-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0F1111;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #888C8C;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #0F1111;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #FF9900;
    box-shadow: 0 0 3px rgba(255, 153, 0, 0.5);
}

.review-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #FFD814;
    color: #0F1111;
    padding: 12px 30px;
    border: 1px solid #FCD200;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #F7CA00;
    border-color: #F2C200;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #37475A 0%, #232F3E 100%);
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #0F1111;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #FF9900;
}

.subscribe-button {
    background-color: #FF9900;
    color: #0F1111;
    padding: 14px 35px;
    border: 2px solid #FF9900;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    background-color: #FFA724;
    border-color: #FFA724;
}

/* Sekcja mediów */
.media-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.media-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #0F1111;
}

.media-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #0F1111;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Sekcja produktów */
.products-section {
    background-color: #EAEDED;
    padding: 60px 20px;
}

.products-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #0F1111;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.product-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0F1111;
}

.product-card p {
    color: #0F1111;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    color: #B12704;
    font-size: 24px;
    font-weight: 700;
}

/* Artykuł - wyróżniony */
.featured-article {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F7F7 100%);
    padding: 40px;
    border-radius: 8px;
    border: 3px solid #FF9900;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.featured-article h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0F1111;
    border-bottom: 3px solid #FF9900;
    padding-bottom: 15px;
}

.featured-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #0F1111;
    margin-bottom: 20px;
    text-align: justify;
}

/* Sekcja kontaktowa */
.contact-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #0F1111;
}

.address {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #0F1111;
    font-weight: 600;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #D5D9D9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background-color: #232F3E;
    color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #DDD;
}

.domainName {
    color: #FF9900;
    font-weight: 700;
}

/* Mobilna wersja */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .specialists-section h2,
    .reviews-section h2,
    .newsletter-section h2,
    .media-section h2,
    .products-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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

    .featured-article {
        padding: 25px;
    }

    .featured-article h2 {
        font-size: 24px;
    }

    .featured-article p {
        font-size: 14px;
    }

    .hero-section {
        min-height: 470px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .hero-section p {
        font-size: 14px;
    }

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

    .specialist-card h3,
    .review-card h3,
    .product-card h3 {
        font-size: 18px;
    }

    .specialists-section,
    .reviews-section,
    .newsletter-section,
    .media-section,
    .products-section,
    .contact-section {
        padding: 40px 15px;
    }

    .map-container iframe {
        height: 300px;
    }
}
