* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; padding-bottom: 60px; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 20px; }

header {
    background: #1a252f; 
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #e74c3c;
}

header .container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.logo-link {
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.logo-img {
    max-height: 80px;
    width: auto; 
    display: block;
}

header p {
    color: #bdc3c7;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0; 
}

nav {
    margin-top: 20px; 
    width: 100%;
    display: flex;
    justify-content: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 16px;
}
nav a:hover { color: #e74c3c; }

.intro { background: #fff; padding: 30px; margin: 20px auto; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
h2 { color: #2c3e50; margin-bottom: 15px; border-bottom: 2px solid #e74c3c; padding-bottom: 5px; font-size: 22px; }
h3 { color: #34495e; margin: 25px 0 15px 0; font-size: 18px; }
p { margin-bottom: 15px; font-size: 15px; }
.highlight { background: #fce4d6; border-left: 4px solid #e74c3c; padding: 12px; font-weight: bold; margin: 15px 0; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; }
.gallery-item { background: #fff; border: 1px solid #ddd; padding: 15px; text-align: center; border-radius: 4px; }
.img-placeholder { width: 100%; height: 150px; background: #eaeded; display: flex; align-items: center; justify-content: center; color: #7f8c8d; font-size: 13px; font-weight: bold; margin-bottom: 10px; border: 1px dashed #bdc3c7; }
.contact-box { background: #2c3e50; color: #fff; padding: 30px; border-radius: 5px; margin-top: 30px; }
.contact-box h2 { color: #fff; border-bottom-color: #3498db; }
.contact-box a { color: #3498db; text-decoration: none; font-weight: bold; }
.gallery-item img {
    width: 100%;
    height: 180px;      
    object-fit: contain; 
    background: #fff;    
}