﻿/* buy.css */

.hero-banner {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background-color: #1C1F52;
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    box-sizing: border-box;
}

    .hero-banner h1 {
        margin: 0;
        font-size: 40px;
        font-weight: 700;
    }

    .hero-banner p {
        margin-top: 16px;
        font-size: 16px;
        color: #cfd2e3;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.main-content {
    max-width: 1100px;
    margin: 60px auto 150px;
    padding: 0 20px;
}

.why-choose {
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

    .why-choose h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .why-choose p {
        max-width: 700px;
        margin: 0 auto 40px;
        color: #555;
    }

.why-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.why-card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
}

    .why-card h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .why-card p {
        font-size: 14px;
        color: #666;
    }

.products h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 24px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info {
    display: flex;
    align-items: center;
}

    .product-info img {
        width: 64px;
        height: 64px;
        margin-right: 20px;
    }

    .product-info div h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .product-info div p {
        margin-top: 6px;
        font-size: 14px;
        color: #555;
    }

.product-button {
    margin-top: 20px;
    margin-top: auto;
    align-self: flex-end;
    background: #EE951D;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s;
    display: inline-block;
}

    .product-button:hover {
        background: #d57f18;
    }

.call-to-action {
    margin-top: 100px;
    text-align: center;
}

    .call-to-action h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .call-to-action p {
        font-size: 15px;
        color: #444;
        max-width: 600px;
        margin: 0 auto 30px;
    }

.trial-box {
    display: inline-block;
    background-color: #FDF4D5;
    border-left: 5px solid #EE951D;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: left;
}

.trial-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.trial-box p {
    font-size: 14px;
    color: #333;
    margin-top: 6px;
}
