body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column; /* Stack header on top of content */
    align-items: center;
    height: 100vh;
}

header {
    padding: 1em;
}

.logo {
    max-width: 100%; /* Make sure the logo doesn't exceed its container */
    transform: scale(1.5);
    height: 200px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Adjust the gap value as needed */
}

.block {
    text-align: center;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    flex: 1; /* Distribute available space equally between blocks */
    max-width: 300px; /* Set a maximum width for responsiveness */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.block:hover {
    transform: scale(1.05);
}

.block h2 {
    color: #fff; /* Set text color to white */
}

.block p {
    color: #eee; /* Set paragraph text color to a lighter shade */
}

.cta-button {
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
    background-color: #fff;
    color: #3363AF; /* Set button text color to the primary color */
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #3363AF; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
    border: 1px solid #fff;
}

@media (max-width: 480px) {
    .content {
        flex-direction: column; /* Stack blocks vertically on small screens */
        align-items: center;
    }

    .block {
        margin-bottom: 20px; /* Add bottom margin between blocks on small screens */
    }
}