body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

header {
    background-color: #0047AB;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-height: 80px; /* Sets the maximum height of the logo */
    max-width: 100%; /* Ensures the logo is not wider than its container */
    height: auto; /* Maintains the aspect ratio of the logo */
    width: auto; /* Allows the logo to scale down if necessary */
}

@media (max-width: 768px) {
    .logo {
        max-height: 60px; /* Sets a smaller max-height for the logo on smaller screens */
    }
    
    /* Adjust the layout of the container to stack elements vertically */
    .container {
        flex-direction: column;
        align-items: center; /* Centers the items horizontally */
    }

    header, .process-selector, footer {
        text-align: center; /* Centers text for small screens */
    }

    .process-card {
        flex-basis: 100%; /* Allows cards to fill the width of the container */
        margin-bottom: 20px; /* Adds space between vertically stacked cards */
    }
}

header h1 {
    margin: 0;
}

.process-selector {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.process-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex-basis: 30%; /* Adjusts the base size of the card */
    text-align: center;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card h2 {
    color: #4CAF50; /* Business logo green color */
}

.process-link {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 20px;
    background-color: #4CAF50; /* Business logo green color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.process-link:hover {
    background-color: #39843c; /* Darker shade of green */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

