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

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 0;
    overflow-x: hidden;
}

.main-wrapper {
    width: 100%;
    max-width: 1000px;
    /* Removed bottom padding */
    position: relative;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: -1;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
}

.logo-img {
    max-width: 584px;
    /* Increased by 30% from 280px */
    height: auto;
    display: block;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-text h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

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

.product-tag {
    background: white;
    padding: 1.25rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.product-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.product-tag span {
    font-weight: 600;
    font-size: 0.95rem;
}

.partnership-banner {
    background: #ff573e;
    color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(255, 87, 62, 0.4);
}

.partnership-banner h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.partnership-banner p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact-info h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.address-block {
    margin-bottom: 2rem;
}

.address-block strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--primary);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

footer {
    margin-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 1.5rem 1rem;
    }

    .header {
        margin-bottom: 2rem;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .products-grid {
        margin-bottom: 2.5rem;
        grid-template-columns: 1fr;
    }

    .partnership-banner {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .partnership-banner p {
        font-size: 1.1rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .logo-img {
        max-width: 240px;
    }
}