/* General */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F5F5F5;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.btn-primary {
    background-color: #FF7A00;
    border-color: #FF7A00;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #E66A00;
    border-color: #E66A00;
}

.section {
    padding: 80px 0;
}

/* Header */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: #4A4A4A;
    background-image: linear-gradient(45deg, #555 25%, transparent 25%, transparent 75%, #555 75%, #555),
    linear-gradient(45deg, #555 25%, transparent 25%, transparent 75%, #555 75%, #555);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Benefits Section */
.benefits-section .icon-box {
    font-size: 3rem;
    color: #FF7A00;
    margin-bottom: 20px;
}

.benefits-section h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Products Section */
.product-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 0.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 25px;
}

.product-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card .card-text {
    color: #666;
    margin-bottom: 20px;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF7A00;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}
