body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #222;
    color: white;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-right: 20px;
}
.hero {
    text-align: center;
    padding: 50px;
    background: #f4f4f4;
}
.cta-button {
    background: blue;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://source.unsplash.com/1600x900/?office,workspace') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #0056b3;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://source.unsplash.com/1600x900/?modern-office,workspace') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay for better readability */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #0056b3;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://source.unsplash.com/1600x900/?modern-office,workspace') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for better text contrast */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #0056b3;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: #222;
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 40px;
}

/* About Image */
.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* About Content */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* Features Section */
.features {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.features-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Feature Box */
.feature-box {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.feature-box i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hover Effect */
.feature-box:hover {
    transform: scale(1.05);
    background: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.pricing-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: 2px solid transparent;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007bff;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 1.1rem;
    padding: 5px 0;
}

/* Popular Plan Highlight */
.popular {
    border-color: #007bff;
    transform: scale(1.05);
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #0056b3;
}

/* Hover Effect */
.pricing-card:hover {
    transform: scale(1.05);
    background: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-style: italic;
}

.testimonial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 1rem;
    color: #aaa;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: scale(1.05);
    background: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* FAQ Section */
.faq {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

/* FAQ Item */
.faq-item {
    background: #333;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #444;
    color: white;
    padding: 15px;
    text-align: left;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: #007bff;
}

.faq-question span {
    font-size: 1.5rem;
}

.faq-answer {
    background: #333;
    padding: 15px;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        width: 90%;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* CTA Section */
.cta {
    background: #007bff;
    text-align: center;
    padding: 60px 20px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #e0e0e0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: #333;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #444;
    color: white;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit-button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        width: 90%;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* Footer */
.footer {
    background: #222;
    padding: 50px 20px;
    color: white;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.footer-column p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #007bff;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #007bff;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* CTA Section */
.cta {
    background: #007bff;
    text-align: center;
    padding: 60px 20px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #e0e0e0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 80px 20px;
    background: #222;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: #333;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #444;
    color: white;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit-button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        width: 90%;
    }
}
