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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f0efef 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
}

.logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    color: #8a282a;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.message {
    color: #4e4e4e;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #8a282a;
    text-align: left;
}

.contact-column h3 {
    color: #8a282a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.contact-item {
    color: #4e4e4e;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-item strong {
    display: inline-block;
    width: 60px;
    color: #333;
}

.contact-item a {
    color: #8a282a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #621d1e;
    text-decoration: underline;
}

/* Address Section */
.address {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.address h3 {
    color: #8a282a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.address p {
    color: #4e4e4e;
    font-size: 16px;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    .logo {
        max-width: 200px;
        margin-bottom: 30px;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .message {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .contact-column h3 {
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 15px;
    }
    
    .address h3 {
        font-size: 20px;
    }
    
    .address p {
        font-size: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    .message {
        font-size: 15px;
    }
    
    .contact-grid {
        gap: 25px;
        padding-top: 25px;
    }
    
    .contact-column h3 {
        font-size: 17px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .contact-item strong {
        width: 55px;
        font-size: 14px;
    }
    
    .address {
        padding: 25px 0;
    }
    
    .address h3 {
        font-size: 18px;
    }
    
    .address p {
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}