/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: #0d47a1;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}
.cta-button {
    background-color: #ffb74d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

/* About Section */
.about {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}
.features h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.feature {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.feature h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Use Cases Section */
.use-cases {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}
.use-cases h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
.use-case {
    margin-bottom: 30px;
}
.use-case h3 {
    font-size: 2em;
    margin-bottom: 10px;
}
.use-case p {
    font-size: 1.2em;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}
.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
.testimonial {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.testimonial p {
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}
.contact form {
    max-width: 600px;
    margin: 0 auto;
}
.contact label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.contact input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact button {
    padding: 15px 30px;
    background-color: #0d47a1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #0d47a1;
    color: white;
    padding: 20px;
    text-align: center;
}
footer a {
    color: #ffb74d;
    text-decoration: none;
}
