* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #A0D6A0;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    
    border-radius: 8px;
}

.header-logo {
    margin-bottom: 20px;
    text-align: center;
}

.header-logo img {
    max-width: 300px;
}


.header-logo p {
    font-size: 20px;              
    font-weight: bold;            
    color: #333;                 
    margin-top: 10px;             
}

.header-logo a {
    color: #333;                 
    text-decoration: none;        
    transition: color 0.3s ease;  
}

.header-logo a:hover {
    color: #A0D6A0;               
}



.box-link {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.websites .box {
    background-color: #f5f5f5;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    transition:  0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between; 
    align-items: center;
    min-height: 600px; 
}

.websites .box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.btn {
    text-transform: uppercase;
    font-weight: bold;
    background-color: #B8E7B8;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;

}

.btn:hover {
    background-color: #A0D6A0;
    color: #333;
}

.logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.box-images {
    display: flex;
    justify-content: space-between; 
    gap: 10px; 
}

.box-images img {
    width: 100%; 
    max-height: 250px; 
    object-fit: contain; 
    border-radius: 8px;
}

.site-logo {
    height: 150px; 
    object-fit: contain;
    }

.quality-logo {
    background-color: #4F506C;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}

.little-angels-logo {
    background-color: #2098B8;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}

.little-angels-btn {
    background-color: #2098B8;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}


h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
    text-align: center;
}

p {
    font-size: 18px;
    text-align: center;
}

/* Footer */
.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}


.footer-map {
    max-height: 300px;
    width: auto;
    aspect-ratio: auto; 
    border-radius: 8px;
    display: block;
    margin: 0 auto; 
}


.footer-text {
    text-align: center;
    margin-right: 20px;
}
