/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header nav {
    float: right;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header ul li {
    display: inline;
    margin-left: 1rem;
}

header ul li a {
    color: #fff;
    text-decoration: none;
}

.search-bar {
    display: inline;
    margin-left: 1rem;
}

.search-bar input {
    padding: 0.5rem;
    border: none;
    border-radius: 3px;
}

/* Hero Section Styles */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero video {
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

.cta-button {
    background: #e8491d;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d7381a;
}

/* Section Styles */
section {
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
}

section:last-of-type {
    border: none;
}

section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.about {
    background: #f4f4f4;
    padding: 2rem;
}

/* Features Section Styles */
.features .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.features .feature-item {
    flex: 1;
    margin: 1rem;
    text-align: center;
}

.features .feature-item img {
    width: 100px;
    height: 100px;
}

.features .feature-item h3 {
    margin-top: 1rem;
}

/* Technical Specs Section Styles */
.specs {
    background: #fff;
    padding: 2rem;
}

.specs p {
    text-align: center;
}

/* Contact Section Styles */
.contact {
    background: #f4f4f4;
    padding: 2rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 80%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.contact button {
    background: #333;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #444;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact .map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.contact .social-media {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.contact .social-media a {
    margin: 0 0.5rem;
}

.contact .social-media img {
    width: 30px;
    height: 30px;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 1rem;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer p {
    margin: 1rem 0 0;
}
