a * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: url('back.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

header {
    color: #fff;
    padding: 20px 0;
    display: flex; /* Use Flexbox for alignment */
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Space out the logo and navigation */
}

.logo h1 {
    font-family: 'Raleway', sans-serif; /* Use the unique font */
    font-size: 2.5rem; /* Make the font size larger */
    font-weight: 800; /* Make it bold */
    letter-spacing: 2px; /* Increase letter spacing for a more spaced-out look */
    color: #f56a79; /* Choose a standout color */
    text-transform: uppercase; /* Transform to uppercase to emphasize */
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for depth */
}

nav {
    padding: 10px 20px; /* Adjust as needed */
    border: 2px solid #fff; /* White border around the box */
    border-radius: 10px; /* Rounded corners */
    background-color: transparent; /* Ensure the background is transparent */
    display: inline-block; /* Keep the box wrapped around the links */
    float: right; /* Align the navigation box to the right */
    margin-right: 20px; /* Moves the box further to the right */
    margin-top: -10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

#hero {  
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #f56a79;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff5a6e;
}

.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

footer {
    background: #333; /* Dark background */
    color: #fff; /* White text */
    text-align: center;
    padding: 10px 10px;
    margin: 0; /* Remove any unintended margins */
    border-radius: 10px;
}

footer p {
    margin: 0;
}
