/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: #222;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: #ff6600;
    text-decoration: none;
    text-align: center;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin: 10px;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: url('your-hero-image.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.8rem;
}
.hero a1 {
	color: #333;
    font-size: 1.0rem;
}

/* Product Overview Section */
.product-overview {
    text-align: left;
}

.product-overview h2 {
    margin-bottom: 20px;
}

.product-overview .intro-text {
    color: #666;
    margin-bottom: 40px;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-text {
    flex: 1;
    padding: 20px;
}

.product-image {
    flex: 1;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
    text-align: center;
}

.benefit-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    margin: 10px;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.benefit-item img {
    width: 70px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 10px;
}

/* Target Markets Section */
.target-markets {
    text-align: center;
}

.market-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.market-item {
    flex: 1;
    margin: 10px;
    max-width: 300px;
    padding: 20px;
}

.market-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    flex: 1;
    max-width: 400px;
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    font-style: italic;
}

.testimonial-item h4 {
    margin-top: 15px;
    color: #666;
}

/* Technical Specifications Section */
.specs ul {
    list-style-type: none;
    padding: 0;
}

.specs ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}

.specs ul li::before {
    content: "\2022";
    color: #ff6600;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Call-to-Action Section */
.cta {
    background-color: #ff6600;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    margin-bottom: 20px;
}

/* FAQs Section */
.faqs {
    padding-bottom: 20px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #ff6600;
}

.faq-item p {
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-links, .footer-contact, .footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-contact p, .footer-newsletter p {
    margin-bottom: 10px;
}

.footer-contact .social-media {
    display: flex;
    gap: 10px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
}

.footer-newsletter button {
    padding: 10px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
}

.footer-bottom {
    background-color: #222;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .product-details, .benefit-items, .market-items, .testimonial-items, .footer-content {
        flex-direction: column;
    }
}
