/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container adjustments */
.container {
    max-width: 900px;   /* limit width */
    margin: 0 auto;     /* center horizontally */
    padding: 0 1rem;    /* small padding for breathing space */
}

/* General styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.site-header {
    background-color: #222;
    color: white;
    padding: 1rem 0;
}
.site-header .container {
    width: 90%;
    margin: 0 auto;
}
.logo {
    font-size: 1.5rem;
}

/* Jumbotron */
.jumbotron {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
.jumbotron h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.jumbotron p {
    font-size: 1.2rem;
}

/* Product Section */
.product-section {
    padding: 1rem 0rem;

}
.container {
    width: 90%;
    margin: 0 auto;
}

/* Two-column layout */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.product-image img {
    max-width: 100%;
    align-items: center;
    border-radius: 8px;
}
.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.product-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.product-content li {
    margin-bottom: 0.5rem;
}
.buy-btn {
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.buy-btn:hover {
    background-color: #0056b3;
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .jumbotron h2 {
        font-size: 2rem;
    }
}
