body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header Styles */
.navbar {
    background-color: #1a3c34;
    padding: 1rem 2rem;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4a017 !important;
}
.nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #d4a017 !important;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.2rem; /* Reduced size for mobile to fit with hamburger menu */
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.btn-primary {
    background-color: #d4a017;
    border-color: #d4a017;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #b58900;
    border-color: #b58900;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background-color: #fff;
}
.product-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-card img {
    height: 300px;
    object-fit: cover;
}
.card-title {
    font-family: 'Playfair Display', serif;
    color: #1a3c34;
}

/* Terms Section */
.terms-section {
    padding: 4rem 0;
    background-color: #fff;
}
.terms-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a3c34;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.terms-section p, .terms-section ul {
    font-size: 1rem;
    line-height: 1.6;
}
.terms-section ul {
    padding-left: 1.5rem;
}

/* Footer */
.footer {
    background-color: #1a3c34;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}
.footer a {
    color: #d4a017;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}