/* CSS for Responsive Design */
body {
    font-family: 'Open Sans', sans-serif; /* Change to Open Sans */
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
}

nav .logo img {
    width: 50px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav .sign-in {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
}

header {
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.header-text {
    flex: 1;
}

.header-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-image img {
    max-width: 50%;
    height: auto;
}
.header-video {
    max-width: 100%;
    height: auto;
}

.header-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure the video covers the entire area without distortion */
}


.cta-button {
    width: auto;
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap; /* Ensures text stays on one line */
}


.header-content .cta-button:hover {
    background: #388E3C;
    color: white;
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.5em; /* Smaller font size for header */
    }
    .logo h2 {
        font-size: 1rem;
        margin: 0;
    }
    
    .header-content p {
        font-size: 1em; /* Smaller font size for paragraph */
    }
    .header-image img {
        max-width: 100%;
    }
    .cta-button {
        padding: 8px 18px; /* Smaller padding for button */
        font-size: 1em; /* Smaller font size for button */
    }

    .feature, .testimonial {
        width: 100%; /* Adjusted width for smaller screens to stack vertically */
    }
    .feature {
        width: 100%; /* Full width on smaller screens */
    }
    .feature {
        width: 100%; /* Full width on smaller screens */
    }
}

/* Original CSS continues */
#features, #testimonials, #download {
    text-align: center;
}

#features h2, #testimonials h2, #download h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
}

#features h2::after, #testimonials h2::after, #download h2::after {
    content: '';
    width: 50px;
    height: 5px;
    background: #4CAF50;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-list, .testimonial-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    text-align: center;
}
 .testimonial {
    width: 30%;
    margin-bottom: 20px;
}

.feature img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.feature h3, .testimonial p {
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #66BB6A;
}
