* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: white;
}

header {
    position: relative;
    height: 300px; /* Increased height for a more cinematic effect */
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/modelnest-back.webp'); /* Correct path */
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Blur effect for the background */
    z-index: 1; /* Place behind the content */
}

.header-content {
    position: relative;
    z-index: 2; /* Bring content above the blurred background */
    color: #fff;
    text-align: center;
    padding: 60px 20px; /* Adjust padding for better spacing */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Black shadow for text */
}

h1 {
    font-size: 2.5em; /* Increase font size for prominence */
    margin: 0;
}

p {
    font-size: 1.2em; /* Increase font size for readability */
    margin: 10px 0 0;
}

main {
    padding: 20px;
    max-width: 800px; /* Limit the width for better readability */
    margin: auto; /* Center the main content */
}

section {
    background: #fff;
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive design */
@media (max-width: 600px) {
    header {
        padding: 15px;
    }

    main {
        padding: 10px;
    }

    section {
        padding: 10px;
    }

    footer {
        padding: 8px;
    }
}