/* General Styles */
body {
    font-family: 'Lato', sans-serif!important;
    background-color: #f8f9fa;
    color: #333;
}

h2 {
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    color: black;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Sections Styling */
.section {
    padding: 60px 20px;
}

.section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.section:nth-child(odd) {
    background-color: #ffffff;
}

.section:nth-child(even) {
    background-color: #f4f4f4;
}

/* Button */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #0056b3;
}
