* {
    box-sizing: border-box;
}

body {

    background-color: #a5c4d0ff;
    font-family: "Times New Roman", Times, serif;
    font-size: 1em;
    height: 100vh;
    margin: 10;
    padding: 0;
    min-height: 100vh;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.page {
    background-color: #5d9ab0ff;
    border: 5px solid #111111;
    width: 100%;
    max-width: 800px;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 10px 0;
}

.logo {
    width: 100%;
    max-width: 70vh;
    height: auto;
    display: flex;
    object-fit: contain;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;       
    max-height: 50vh;  
    object-fit: contain; 
}

.logo-2 {
    width: 100%;
    max-width: 35vh;
    height: auto;
    display: flex;
    justify-content: center;
}

.logo-2 img {
    width: 100%;
    height: auto;       
    max-height: 35vh;  
    object-fit: contain; 
}

.footer-images {
    width: 100%;
    display: flex;  
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;              
    padding: 10px 0;
}

.footer-images img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
}



.page h1 {
    color: #ffffff;
    font-size: 2em;
    margin: 1rem 0;
}

.page h2 {
    color: #ffffff;
    font-size: 1.5em;
    margin: 1rem 0 0.5rem 0;
}

.email-btn {
    display: inline-block;
    background-color: #a5c4d0ff;
    color: #111111;
    padding: 12px 24px;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #111111;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.email-btn:hover {
    background-color: #5d9ab0ff;
}

p {
    margin: 5px;
}

@media (max-width: 480px) {
    body {
        font-size: 0.9em;
    }
    
    .page {
        padding: 15px;
        border-width: 3px;
    }
    
    .page h1 {
        font-size: 1.5em;
    }
    
    .page h2 {
        font-size: 1.2em;
    }
    
    .footer-images img {
        width: 100%;
        max-width: none;
    }
    
    .email-btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .page {
        max-width: 600px;
    }
    
    .footer-images img {
        width: calc(50% - 10px);
    }
}

@media (min-width: 769px) {
    .page {
        max-width: 800px;
    }
    
    .footer-images img {
        width: calc(25% - 10px);
        max-width: 180px;
    }
}



.image-gallery {
  display: flex;
  flex-wrap: wrap;      
  justify-content: center;
  gap: 20px;            
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto; 
}


.expandable-image {
  width: 250px;         
  height: 200px;
  object-fit: cover;    
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  
  transition: transform 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}


.expandable-image.expanded {
  position: fixed;        
  top: 50%;               
  left: 50%;              
  transform: translate(-50%, -50%);
  
  width: 80vw;            
  height: 80vh;          
  object-fit: contain;
  
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
}
