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

body {
    font-family: 'Helvetica Neue', Helvetica, Palatino, sans-serif;
    background-color: #f8f8f8;
}

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

/* Header */
.header {
    background-color: #1e3a8a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.nav ul {
    list-style: none;
    padding: 0;
}

.nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.button {
    background-color: #ffd700;
    color: #1e3a8a;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: #1e3a8a;
    color: #ffd700;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* About Section */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.about-image img {
    max-width: 50%;
    border-radius: 10px;
    padding-top: 5%;
}

/* Applications Section */
.applications-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.application {
    flex: 1;
    margin: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.application:hover {
    transform: translateY(-10px);
}

.application img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.application h3 {
    font-size: 24px;
    margin: 20px 0;
}

.application p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Future Section */
.future-content {
    text-align: center;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
}

.contact-form input[type="submit"] {
    background-color: #1e3a8a;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #ffd700;
    color: #1e3a8a;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
