/* Basic reset for consistent styling across browsers */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header styling */
.page-header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Flexbox container for the two vertical blocks */
.content-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

/* Main content block styling */
.main-content {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sidebar block styling */
.sidebar-content {
    flex: 1;
    background-color: #e9e9e9;
    padding: 20px;
    margin-left: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
.page-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stack the blocks vertically */
    }
    
    .sidebar-content {
        margin-left: 0;
        margin-top: 20px; /* Add some space between the stacked blocks */
    }
}

/* New styles for the info blocks */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adjust spacing between rows */
}

.info-row {
    display: flex;
    gap: 15px; /* Adjust spacing between blocks in a row */
}

.info-block {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    flex: 1; /* Ensures blocks in a row have equal width */
}

.info-block.full-width {
    flex: none;
    width: 100%;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

