/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
}

header {
    position: relative;
    padding: 100px 0;
    color: white; /* Adjust text color if necessary */
    text-align: center;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.jpg') no-repeat center center/cover;
    opacity: 0.2; /* Adjust the opacity as needed */
    z-index: -1;
}




.logo {
    width: 120px;
}

header h1 {
    font-size: 3em;
    color: #ff4d4d;
}

header p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

/* Download Button */
.download-btn {
    background-color: #ff4d4d;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.download-btn:hover {
    background-color: #ff1a1a;
}

/* Features Section */
#features {
    background: #1e1e1e;
    padding: 80px 0;
}

#features h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    width: 250px;
    padding: 20px;
    margin: 15px;
    background: #222;
    border-radius: 10px;
    transition: 0.3s;
}

.feature:hover {
    background: #333;
}

/* About Section */
#about {
    padding: 80px 0;
}

#about h2 {
    font-size: 2.5em;
}

#about p {
    max-width: 700px;
    margin: auto;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #000;
    padding: 20px 0;
}
