body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
}

header {
    text-align: center;
    background-color: #222;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#logo {
    display: block;
    margin: 0 auto;
    width: 20vw;
    max-width: 300px;
    height: auto;
}

nav {
    margin-top: 20px; /* Adjust as needed to ensure the nav is properly placed */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

nav ul li a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

.intro, .gallery, .call-to-action {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 200px; /* Add top margin to avoid content being hidden behind the fixed header */
    text-align: center;
}

h1, h2 {
    color: #ff6600;
}

.cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #e65c00;
}

.gallery {
    padding: 50px 20px;
    margin-top: 50px; /* Reduced margin for closer spacing */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 20px;
}

@media (min-width: 480px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);
}

.call-to-action {
    padding: 50px 20px;
}

.benefits-box {
    background-color: #333;
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 20px;
    margin: 50px 0;
    text-align: left;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-box h2, .benefits-box p, .benefits-box ul {
    margin: 10px 0;
}

.benefits-box ul {
    list-style: disc;
    padding-left: 20px;
}

.features {
    padding: 50px 20px;
    text-align: center;
}

.features h3 {
    color: #ff6600;
    background-color: #222;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
}

footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer .social-media-bar {
    background-color: #111;
    padding: 10px 0;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-media a {
    color: #ff6600;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: flex; /* Align icon and text */
    align-items: center; /* Center items vertically */
    gap: 8px; /* Space between icon and text */
}

footer .social-media a i {
    font-size: 1.5em; /* Larger icons relative to text */
}

footer .social-media a:hover {
    color: #ff8500;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
}

footer .about, footer .contact-info {
    max-width: 300px;
    margin: 10px;
}

footer h2 {
    color: #ff6600;
}

footer p, footer a {
    color: #ccc;
}

footer a:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
