/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

/* Container */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Hero Section */
.hero {
    background-color: #0077cc;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #ffcc00;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    padding: 10px 0; /* You can adjust this value to reduce height */
    display: flex;  /* This will make the navbar items line up horizontally */
    align-items: center; /* Ensures vertical alignment of items */
    justify-content: space-between; /* Space out items if necessary */
}

.navbar .logo {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px; /* Optional: Add some space between the logo and the left side */
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}


/* Features Section */
.features, .benefits, .faq, .pricing, .gallery {
    padding: 50px 20px;
    background-color: white;
}

.features h2, .benefits h2, .faq h2, .pricing h2, .gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.feature-item, .faq-item {
    background-color: #e9f5ff;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-item {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.btn-order {
    background-color: #ff5722;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}


.footer-links a {
    color: #ffcc00;
    text-decoration: none;
}
