/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Logo Section - Top */
.logo-section {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 400px;
    height: auto;
    width: 100%;
}

/* Image Section - Middle */
.image-section {
    width: 100%;
    text-align: center;
}

.building-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contacts Section - Bottom */
.contacts-section {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.contacts-image {
    max-width: 600px;
    height: auto;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        gap: 20px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .contacts-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        gap: 15px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .contacts-image {
        max-width: 300px;
    }
    
    .building-image {
        border-radius: 4px;
    }
}