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

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

body {
    font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #202124;
    background: #ffffff;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Hero Section - Block 1 */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    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:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 40px
        );
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-section {
    margin-top: 2rem;
}

.offer-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

/* Products Section - Block 3 */
.products-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

.product-card ul {
    list-style: none;
    text-align: left;
}

.product-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

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

/* Investment Guide Article */
.investment-guide {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
    margin-top: 3rem;
}

.investment-guide h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.investment-guide p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.95;
}

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

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #fbbc04;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #5f6368;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author strong {
    font-size: 1.1rem;
    color: #202124;
    display: block;
    margin-bottom: 5px;
}

.review-author span {
    color: #5f6368;
    font-size: 0.95rem;
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    padding: 80px 0;
}

.specialists-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.specialist-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ea4335;
}

.specialist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.specialist-info h3 {
    font-size: 1.4rem;
    color: #202124;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.position {
    color: #1a73e8;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.description {
    color: #5f6368;
    line-height: 1.6;
}

/* Newsletter Section - Block 2 */
.newsletter-section {
    background: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: #202124;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.subscribe-button {
    background: white;
    color: #34a853;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

/* Contact Section - Block 6 */
.contact-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.address {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.address h3 {
    color: #202124;
    margin-bottom: 1rem;
    font-weight: 600;
}

.address p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

/* Footer - Block 7 */
.footer {
    background: #202124;
    color: #9aa0a6;
    padding: 30px 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

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

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

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .investment-guide {
        padding: 25px;
    }

    .investment-guide h3 {
        font-size: 1.5rem;
    }

    .investment-guide p {
        font-size: 1rem;
    }

    section {
        padding: 60px 0 !important;
    }

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

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .subscribe-button {
        width: 100%;
        margin-top: 1rem;
    }

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

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

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

    .price {
        font-size: 1.8rem;
    }

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

    .review-content p {
        font-size: 1rem;
    }

    .investment-guide {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Google Ads Style Elements */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, #ea4335, #fbbc04, #34a853, #1a73e8);
    margin: 0 auto;
    width: 100px;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.review-card,
.specialist-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
input:focus,
.cta-button:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}
