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

:root {
    --azure-web: #E2F7FE;
    --black: #000000;
    --paynes-gray: #606C71;
    --lemon-lime: #E0F01B;
    --outer-space: #414548;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--outer-space);
    background-color: var(--azure-web);
}

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

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--azure-web) 0%, rgba(226, 247, 254, 0.8) 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--outer-space);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--paynes-gray);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.2rem;
    color: var(--paynes-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--outer-space);
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--azure-web);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--outer-space);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 1.1rem;
    color: var(--paynes-gray);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--lemon-lime);
    color: var(--black);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d4e019;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 240, 27, 0.3);
}

/* Footer */
footer {
    background-color: var(--outer-space);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.company-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }
}