/* General Reset */
body, html, div, p, h1, ul, a, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
/* Navigation */
.navigation ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.navigation ul a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navigation ul a:hover {
    color: #ccc;
}

/* Media Queries for Responsive Navigation */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .logo {
        margin-bottom: 20px;
    }
    .navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    .navigation ul a {
        font-size: 16px;
    }
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 50px 20px;
}
.hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}
.intro-text h1 {
    font-size: 32px;
    margin: 20px 0;
}
.intro-text p {
    font-size: 16px;
    line-height: 2.5;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}
/* Logo Styles */
.logo img {
    width: 120px;  /* Adjust the size as needed */
    height: auto;  /* Maintain aspect ratio */
    max-width: 100%;  /* Ensures it doesn’t overflow its container */
}
