:root {
    --primary-color: #140f46;
    --secondary-color: #d63a1f;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
}

.products-hero {
    padding: 250px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-description {
    color: #140F46CC;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.section-title {
    color: var(--secondary-color);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.product-image {
    width: 100%;
    height: 415px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 24px 0 0 0;
}

.product-title {
    color: #1a365d;
    margin-bottom: 12px;
    font-family: "Inter";
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.product-title:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.product-description {
    color: #000000CC;
    margin: 0;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .product-image {
        height: 300px;
    }

    .product-content {
        padding: 20px;
    }
}