/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@400;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;
    background-color: #f8f9fa;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    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.1) 2px, transparent 2px);
    background-size: 50px 50px;
    color: white;
    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(30, 60, 114, 0.3);
    z-index: 1;
}

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

.hero-section h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #e8f4fd;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 3px solid #e74c3c;
}

.reviews-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.reviews-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #e74c3c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.review-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-card p {
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.products-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.products-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ffffff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.product-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
    margin: 1rem 0;
}

.product-card ul {
    list-style: none;
    padding: 0;
}

.product-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Investment Guide Article */
.investment-guide {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border-left: 8px solid #e74c3c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.investment-guide h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.investment-guide p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #34495e;
}

/* Specialists Section */
.specialists-section {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
}

.specialists-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.specialists-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #3498db;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.specialist-card {
    background: #34495e;
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid #3498db;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    background: #3d566e;
    transform: translateY(-5px);
}

.specialist-card h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.position {
    color: #95a5a6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.2rem;
    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 5px 15px rgba(0,0,0,0.1);
}

.newsletter-form input[type="email"]:focus {
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.subscribe-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Contact Section */
.contact-section {
    background: #ecf0f1;
    padding: 80px 0;
    border-top: 3px solid #34495e;
}

.contact-section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.address strong {
    color: #e74c3c;
    font-size: 1.3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    filter: contrast(1.1) saturate(1.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

/* Mobile Responsive */
@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.5rem;
        margin-bottom: 1rem;
    }

    .hero-section h2 {
        font-size: 1.4rem;
    }

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

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

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

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

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

    .subscribe-btn {
        margin-top: 0.5rem;
    }

    section {
        padding: 60px 0 !important;
    }

    .investment-guide {
        padding: 2rem;
        margin-top: 2rem;
    }

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

    h2 {
        font-size: 2rem !important;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}

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

    .hero-section h2 {
        font-size: 1.2rem;
    }

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

    .investment-guide {
        padding: 1.5rem;
    }

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