
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    color: #222;
}


header {
    background-color: #000000; 
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.btn {
    background-color: #FFA500; 
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #ff8c00; 
}



#home {
    height: 100vh; 
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/111.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-text {
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.hero-text h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}


#products {
    background-color: #2a2a2a; 
    color: #f5f5f5; 
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image img {
    width: 300px; 
    height: auto;
    border: 5px solid #ffffff; 
    border-radius: 10px;
}

.product-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-content h2 {
    font-size: 2em;
    color: #fff; 
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9b233; 
    color: #2a2a2a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.product-content .btn:hover {
    background-color: #e09a1f; 
}

#pricing {
    background-color: #2a2a2a; 
    color: #f5f5f5; 
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-content {
    max-width: 600px;
}

.pricing-content h2 {
    font-size: 2em;
    color: #fff; 
    margin-bottom: 20px;
}

.pricing-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-content ul {
    list-style-type: none; 
    padding: 0;
    margin-bottom: 20px;
}

.pricing-content ul li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
}

.pricing-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9b233;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.pricing-content .btn:hover {
    background-color: #e09a1f; 
    color: white;
}

.pricing-image img {
    width: 300px; 
    height: auto; 
    border: 5px solid #ffffff; 
    border-radius: 10px; 
}

#team {
    background-color: #2a2a2a; 
    color: #f5f5f5; 
    text-align: center;
    padding: 50px 20px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f9b233; /
}

.team-container p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #cccccc;
}

.team-members {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.member {
    background-color: #333333; 
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 4px solid #f9b233; 
}

.member h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #f9b233;
}

.member p {
    font-size: 1em;
    color: #cccccc;
}


footer {
    background-color: #000000; 
    color: #f5f5f5; 
    text-align: center;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #e3e2ff;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: #f5f5f5;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1em;
}

.footer-nav a:hover {
    color: #f9b233; 
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

footer p {
    font-size: 0.9em;
    color: #cccccc;
}



