/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
        
        .hero-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-text {
            position: absolute;
            top: 30%;
            left: 10%;
            color: white;
            text-align: left;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .hero-text h2 {
            font-size: 2rem;
            font-weight: normal;
            margin-top: 0;
        }
        
        .about-section {
            padding: 4rem 10%;
            text-align: center;
        }
        
header {
    background-color: #005792;
    color: white;
    padding: 15px;
    text-align: center;
}

header img {
    max-width: 250px;
    height: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
#carousel img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Product Section */
.product {
    text-align: center;
    margin: 20px;
}

.product img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 5px;
}

/* Call-to-Action Section */
.cta {
    text-align: center;
    padding: 20px;
    background-color: #eee;
}

.cta img {
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Section */
#contact {
    background-color: #005792;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Orange Call-to-Action Button */
.button {
    display: inline-block;
    background-color: #FF6600;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #CC5500;
}

/* About Section Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* Text Styling */
.about-text {
    width: 50%;
    font-size: 18px;
}

/* Image Styling */
.about-image img {
    width: 100%;
    max-width: 500px; /* Adjusted based on sample document */
    height: auto;
    border-radius: 5px;
}
