/* Resetting styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Epilogue', sans-serif;
    color: white;
    background-color: black;
}

/* General Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #000; /* Example background color */
    box-sizing: border-box;
}

/* 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 */
}

/* Navigation Styles */
.navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation li {
    margin-left: 20px; /* Space between links */
}

.navigation a {
    text-decoration: none;
    color: white; /* Change according to your theme */
    font-size: 18px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;  /* Stack logo and nav vertically */
        align-items: center;
    }

    .logo img {
        width: 80px; /* Smaller logo on smaller screens */
    }

    .navigation ul {
        flex-direction: column; /* Stack links vertically */
    }

    .navigation li {
        margin: 10px 0; /* Adjust spacing between links */
    }
}

/* Main content styles */
.main-content {
    text-align: center;
    padding: 24px;
}

.hero-image {
    width: 455px;
    height: 399px;
    margin-bottom: 20px;
}

.intro-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-text p {
    width: 803px;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 auto;
}

