* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body, html {
    height: 100%;
    color: rgb(0, 0, 0);
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.white-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.075);
}

.blurred-img {
    width: 110%;
    height: 110%;
    top: -5%; left: -5%;
    position: absolute;
    background-image: url('image.jpg'); 
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    opacity: 20%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.content-area {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
    padding: 20px;
}

.logo {
    width: clamp(150px, 20vw, 220px);
    height: auto;
    margin-bottom: 20px;
}

h1 { 
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    margin: 0 0 10px 0;
    line-height: 1.1;
}

p {
    font-size: clamp(2rem, 6vw, 1.5rem);
    opacity: 0.9;
    max-width: 700px;
}

.footer-info {
    width: 100%;
    padding: 40px 20px;
}

.info-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 0.95rem;
}

.info-item strong {
    color: #6cc7e6;
    white-space: nowrap;
}

.address-text {
    line-height: 1.5;
}

@media (max-width: 768px) {
    .content-area {
        justify-content: center;
        padding-top: 60px;
    }

    .info-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.contact-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff0f0f;
    text-decoration: none;
}