body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background: url('../img/3.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .navbar {
    background: transparent; /* Make the navbar blend with the header */
}

header .navbar-brand {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

header .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: bold;
}

header .navbar-nav .nav-link:hover {
    color: #d2691e; /* Chocolate color for hover effect */
}

h1, h2, h3 {
    margin: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.card {
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #d2691e; /* Chocolate */
    color: #ffffff;
}

.footer {
    background: #8B4513; /* SaddleBrown */
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.btn-custom {
    background-color: #d2691e; /* Chocolate */
    color: #ffffff;
}

.btn-custom:hover {
    background-color: #c65d1e; /* Darker Chocolate */
}

.table {
    margin-top: 20px;
}

.table th {
    background-color: #8B4513; /* SaddleBrown */
    color: #ffffff;
}

.table td {
    vertical-align: middle;
}

.carousel-inner img {
    height: 400px;
    object-fit: cover;
}

.offer-card {
    background-color: #8B4513; /* SaddleBrown */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.offer-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.offer-card .card-text {
    font-size: 1rem;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #d2691e; /* Chocolate color */
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d2691e; /* Chocolate color */
}

.product-card .card-text {
    font-size: 1rem;
    color: #555;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d2691e; /* Chocolate color */
}

.service-card .card-text {
    font-size: 1rem;
    color: #555;
}
