/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.7;
}

/* Header and Navigation */
header {
    background-color: #343a40;
    color: white;
    padding: 1.5em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.logo i {
    margin-right: 0.5em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 1.5em;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background-color: #e9ecef;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3em;
    color: #343a40;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    color: #6c757d;
    margin-bottom: 2em;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.problem-section h2,
.solution-section h2,
.features-section h2,
.testimonials-section h2,
.contact-section h2 {
    font-size: 2.5em;
    color: #343a40;
    margin-bottom: 1em;
    text-align: center;
}

.problem-section .section-description,
.solution-section .section-description,
.features-section .section-description,
.testimonials-section .section-description,
.contact-section .section-description {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.1em;
}

.problem-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.problem-points .point {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.problem-points .point i {
    color: #dc3545;
    font-size: 2.5em;
    margin-bottom: 0.8em;
}

.problem-points .point h3 {
    color: #343a40;
    margin-bottom: 0.5em;
}

.problem-points .point p {
    color: #6c757d;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background-color: #fff;
}

/* style.css (continued) */

.solution-details {
    display: flex;
    gap: 40px;
    margin-top: 2em;
    align-items: center;
}

.solution-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.solution-text {
    flex: 1;
}

.solution-text h3 {
    color: #28a745;
    margin-bottom: 0.8em;
    font-size: 1.8em;
}

.solution-text p {
    color: #6c757d;
    margin-bottom: 1.2em;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item i {
    color: #007bff;
    font-size: 3em;
    margin-bottom: 0.8em;
}

.feature-item h3 {
    color: #343a40;
    margin-bottom: 0.5em;
    font-size: 1.5em;
}

.feature-item p {
    color: #6c757d;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.testimonial {
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p:first-child {
    font-style: italic;
    color: #555;
    margin-bottom: 1em;
}

.testimonial-author {
    font-weight: bold;
    color: #343a40;
    font-size: 1.1em;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 2em;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #343a40;
    margin-bottom: 1.5em;
    font-size: 1.8em;
    text-align: left;
}

.form-group {
    margin-bottom: 1.8em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1e7e34;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #343a40;
    margin-bottom: 1.5em;
    font-size: 1.8em;
    text-align: left;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.8em;
    color: #007bff;
    font-size: 1.2em;
}

.social-links {
    margin-top: 2em;
}

.social-links a {
    display: inline-block;
    margin-right: 1em;
    color: #007bff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0056b3;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2em 0;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer-links li {
    margin-left: 1em;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #f8f9fa;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

.success-message {
    color: #28a745;
    margin-top: 1em;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 100%;
    }

    .solution-details {
        flex-direction: column;
        text-align: center;
    }

    .solution-image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #343a40;
        width: 100%;
        text-align: center;
        padding: 1em 0;
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5em 0;
    }

    .logo {
        font-size: 1.5em;
    }

    nav button {
        display: block;
        background: none;
        color: white;
        border: none;
        font-size: 1.2em;
        cursor: pointer;
    }

    .problem-points,
    .feature-list,
    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        margin-top: 1em;
    }

    .footer-links li {
        margin-left: 0;
        margin-right: 1em;
    }
}