* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff; /* Bright white background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
    padding-top: 60px; /* Space for fixed navbar */
}

a {
    color: #3991e3; /* Golden yellow for links */
    text-decoration: none;
}

a:hover {
    color: #193e62;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa; /* Light grey navbar background */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo h1 {
    color: #333; /* Dark text for logo */
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links li a {
    transition: color 0.3s ease-in-out;
}

/* Section Styling */
.section-padding {
    padding: 60px 20px;
}

.full-height {
    height: 100vh;
}

.bg-accent {
    background-color: #f9fafb; /* Light background for contact section for contrast */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2, h3, h4 {
    color: #102a43; /* Dark blue for headings */
    margin-bottom: 1em;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(to bottom right, #4dabf7, #0062cc); /* Gradient background */
    color: #ffffff;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Info & Contact Form Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 40px;
    align-items: start;
}

.company-info h4, .contact-form h3 {
    font-size: 1.5rem;
    color: #102a43;
}

.company-info p, .contact-form form {
    font-size: 1rem;
    line-height: 1.5;
}

/* Form and Button Styles */
.form-group {
    margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9fafb;
    color: #102a43;
}

button {
    background-color: #ffc107; /* Bright golden yellow for buttons */
    color: #102a43;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0a800;
}

ul {
    margin-left: 50px;
}

/* Footer */
footer {
    text-align: left;
    background-color: #102a43;
    color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #007bff;
    margin-left: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.policy-section {
    padding-top: 20px; /* Add top padding to each policy section */
    padding-bottom: 20px; /* Add bottom padding to each policy section */
    margin-bottom: 20px; /* Optional: add more space between sections */
    border-bottom: 1px solid #eaeaea; /* Optional: adds a subtle line between sections */
}

.terms-section {
    padding-top: 20px; /* Add top padding to each terms section */
    padding-bottom: 20px; /* Add bottom padding to each terms section */
    margin-bottom: 20px; /* Optional: add more space between sections */
    border-bottom: 1px solid #eaeaea; /* Optional: adds a subtle line between sections */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content, .container, footer {
        padding: 20px;
    }

    .full-height {
        height: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 10px;
    }
}