body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', Arial, sans-serif;
    box-sizing: border-box;
    background-color: #f7f7f5;
    color: #2d3748;
}

*, *::before, *::after {
    box-sizing: inherit;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px 60px;
    margin-top: 110px;
}

.products {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading Container */
.heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.products h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2em;
    margin-bottom: 0;
    color: #003366;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2px;
}

.section-intro {
    margin-top: 18px;
    font-size: 1em;
    color: #5a6678;
    text-align: center;
    letter-spacing: 0.2px;
}

/* Animated Separation Line */
.separation-line {
    width: 56px;
    height: 3px;
    background-color: #b8983a;
    margin: 20px auto 0;
    display: block;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.9s ease-in-out;
}

.separation-line.animate {
    transform: scaleX(1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background-color: white;
    border-radius: 2px;
    border-top: 3px solid #003366;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.product-card .content {
    padding: 22px 20px;
    text-align: center;
}

.product-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #003366;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.product-card p {
    font-size: 0.94em;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-card .cta-button {
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid #003366;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.product-card .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 100px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}