/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('background.png') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Cover the whole page */
    color: #fff; /* White text color */
}

a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #0073e6;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: #005bb5;
}

/* Navigation Bar */
nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav .brand {
    font-size: 2.5em;
}

nav .nav-links a {
    margin: 0 10px;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 10px;
    background: none;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 1200px; /* Large image */
    object-fit: cover;
}

.hero-description {
    font-size: 1.2em;
    margin-top: 20px;
}

/* Content Wrapper */
.content-wrapper {
    background-color: #e6d4af; /* White background for content sections */
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000; /* Black text color for content */
}

.content-wrapper h2 {
    font-size: 2.5em; /* Increase font size to 1.8em */
  }

/* Features Section */
#features {
    padding: 50px 20px;
}

#features h2 {
    text-align: center;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-image {
    width: 300px;
    height: auto;
    margin-right: 20px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5em;
}

.feature-content p {
    line-height: 1.6;
}

/* Dev Process Section */
#dev-process {
    padding: 50px 20px;
}

#dev-process h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Demo Video Section */
#demo-video {
    padding: 50px 20px;
}

#demo-video h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* About Section */
#about {
    padding: 50px 20px;
}

#about h2 {
    text-align: center;
    margin-bottom: 30px;
}

#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

#about ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px; /* Add margin-bottom to the list */
}

#about ul li {
    margin: 25px; /* Add margin around each list item */
    text-align: center;
}

