* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #111111;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.65;
    z-index: -1;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 2rem 3rem;
    position: relative;
    z-index: 1;
}

.logo-section {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.logo {
    width: 360px;
    height: auto;
}

.content-section {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.content-inner {
    padding: 2rem 0;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #ffffff;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.main-text p {
    text-align: left;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #ffffff;
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 1.5rem 1rem 2rem;
    }
    
    .logo {
        width: 280px;
    }
    
    .logo-section {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .main-text {
        font-size: 1rem;
    }
    
    .content-inner {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 240px;
    }
    
    .logo-section {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .main-text {
        font-size: 0.95rem;
    }
    
    .content-inner {
        padding: 1rem 0;
    }
}