/* Basic Reset & Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* Optional: smooth scroll effect */
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Section 1: Hero Image */
#hero-section {
    height: 100vh; /* Full viewport height */
    width: 100%;
    background-image: url('images/background.jpg'); /* Your second image */
    background-size: cover; /* Cover the entire section */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: Parallax-like effect */
    display: flex; /* Optional: Allows centering content if you add any */
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Set text color if you add text overlay */
}

/* Optional Hero Content Styling */
/* .hero-content {
    background-color: rgba(0, 0, 0, 0.5); Add a dark overlay
    padding: 20px;
    border-radius: 5px;
} */

/* Section 2: Content Area */
#content-section {
    padding: 60px 20px; /* Add padding around the content */
    background-color: #fff; /* White background for content */
    min-height: 100vh; /* Ensure it takes at least screen height */
}

.content-wrapper {
    max-width: 1200px; /* Max width of content */
    margin: 0 auto; /* Center the wrapper */
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 40px; /* Space between about and contact sections */
    align-items: flex-start; /* Align items to the top */
}

/* About Section Styling */
.about-container {
    flex: 1; /* Allow flex item to grow/shrink */
    min-width: 300px; /* Minimum width before wrapping */
}

.about-content {
    display: flex;
    flex-wrap: wrap; /* Wrap image and text on small screens */
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.content-image {
    max-width: 200px; /* Limit image size */
    height: auto;
    display: block;
    border: 1px solid #eee;
    padding: 5px;
}

.about-content p {
    flex: 1;
    min-width: 200px;
    font-size: 1.1em;
}

/* Contact Section Styling */
.contact-container {
    flex: 1; /* Allow flex item to grow/shrink */
    min-width: 500px; /* Minimum width before wrapping */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    /* text-align: center;
}

.logo-image {
    max-width: 300px; /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-details-footer {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%; /* Make footer details take full width */
}


a {
    color: #007bff; /* Standard link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #555;
    text-decoration: none;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #444;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    width: 100%; /* Make heading take full width */
    text-align: left; /* Align headings left */
}

.contact-container h2 {
     text-align: center; /* Center Contact Us heading */
}


/* Footer Styling */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #eee;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center items */
    }

    .about-container, .contact-container {
        width: 90%; /* Take more width on smaller screens */
         max-width: 500px; /* Limit max width */
    }

    .about-content {
        flex-direction: column; /* Stack image and text */
        text-align: center;
    }

     h2 {
        text-align: center;
     }
}