    *, *::before, *::after {
    box-sizing: border-box;
    }
    
    body {
    font-family: 'Verdana', 'Verdana', sans-serif;
    background-color: #D3EEE6;
    color: #333;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
    }
    
    .site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    }
    
    .logo-container {
    flex: 0 0 auto;           /* Prevent the logo from stretching */
    margin: 0 auto;           /* Center the logo container */
    }

    .logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    }

    .logo-link:hover {
    transform: scale(1.05);
    }

    .logo {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    }
    
    .nav-menu {
    flex: 1;
    text-align: right;
    }

    .container {
    max-width: 800px;
    width: 100%;
    position: relative;
    border-radius: 30px;
    padding: 2rem;
    margin: 1rem auto;
    margin-bottom: 20px;
    }
    
    h1 {
    color: #5088B9;
    text-align: center;
    font-family: 'Galindo', sans-serif;
    }
    
    input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin: 1.5rem 0;
    border: 3px solid #F9B577;
    border-radius: 10px;
    }
    
    ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
    }
    
    li a {
    background: #e2ede9;
    border: 3px solid #F9B577;
    border-radius: 10px;
    padding: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    color: #5088B9;
    transition: 0.2s ease;
    }
    
    li a:hover {
    background: #f2f7f7;
    transition: all 0.4s ease;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    
    p {
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
    }
    
    /* unvisited link */
    a:link {
    color: #5088B9;
    }

    /* mouse over link */
    a:hover {
    color: #F48115;
    }