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

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-weight: 400;
}

/* Block 1: Hero Section (Amazon Orange Theme) */
.hero-section {
    background: linear-gradient(135deg, #ff9900 0%, #ff7b00 100%);
    color: #fff;
    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: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.hero-section h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

/* CTA Button (Amazon Style) */
.cta-button {
    display: inline-block;
    background: #232f3e;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.cta-button:active {
    transform: translateY(0);
}

/* Block 2: Subscription Form (Light Blue Theme) */
.subscription-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 0;
    color: #1565c0;
}

.subscription-section h2 {
    text-align: center;
    color: #0d47a1;
    margin-bottom: 15px;
}

.subscription-section p {
    text-align: center;
    color: #1976d2;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.subscription-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #90caf9;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    min-width: 250px;
    transition: all 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.subscription-form button {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.subscription-form button:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

/* Block 3: Products Section (White/Gray Theme) */
.products-section {
    background: #fff;
    padding: 60px 0;
    color: #333;
}

.products-section h2 {
    text-align: center;
    color: #232f3e;
    margin-bottom: 40px;
}

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

.product-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-item h3 {
    color: #232f3e;
    margin-bottom: 15px;
}

.product-item p {
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9900;
    margin-top: 15px;
}

/* Article Highlighting */
.blog-article {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.blog-article h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.blog-article p {
    color: #424242;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Block 4: Specialists Section (Dark Theme) */
.specialists-section {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    padding: 60px 0;
    color: #fff;
}

.specialists-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

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

.specialist-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.specialist-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.specialist-item h4 {
    color: #81c784;
    margin-bottom: 15px;
}

.specialist-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Block 5: Reviews Section (Light Green Theme) */
.reviews-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 60px 0;
    color: #4a148c;
}

.reviews-section h2 {
    text-align: center;
    color: #4a148c;
    margin-bottom: 40px;
}

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

.review-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.1);
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.2);
}

.review-item h4 {
    color: #6a1b9a;
    margin-bottom: 15px;
}

.review-item p {
    color: #424242;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rating {
    color: #ff9900;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Block 6: Contact Section (Amazon Blue Theme) */
.contact-section {
    background: linear-gradient(135deg, #232f3e 0%, #1a252f 100%);
    padding: 60px 0;
    color: #fff;
}

.contact-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #fff;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    border-radius: 12px;
}

/* Block 7: Footer */
.footer {
    background: #0f1419;
    padding: 30px 0;
    text-align: center;
    color: #888;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

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

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-section {
        min-height: 350px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

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

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

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

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

    .subscription-form input[type="email"] {
        min-width: 100%;
    }

    .blog-article {
        padding: 25px;
    }

    .blog-article h3 {
        font-size: 1.2rem;
    }

    .contact-section,
    .subscription-section,
    .products-section,
    .specialists-section,
    .reviews-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 300px;
    }

    .product-item,
    .specialist-item,
    .review-item,
    .blog-article {
        padding: 15px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .subscription-form button {
        padding: 12px 25px;
    }
}
