* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 94vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
}

.logo-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo-background {
    opacity: 0.2;
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
}

footer {
    background-color: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.contact-info {
    margin-bottom: 15px;
    line-height: 1.6;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.phone {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.website a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.website a:hover {
    color: #1abc9c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    footer {
        padding: 15px;
    }
    
    .address, .phone {
        font-size: 1rem;
    }
}