/* Reset some default browser styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px; /* Ensures the content doesn't touch the borders */
    box-sizing: border-box;
    background-color: #f4f4f4; /* A background color to show under the image */
}

header {
    text-align: center;
    background: white;
    color: darkblue;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
}

header h1 {
    font-size: 2rem;
    font-weight: bold;
}

.main-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-frame {
    flex: 2;
    margin-right: 20px;
}

.header-bg {
    background: url('tax-background.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh; /* 50% of the viewport height */
    border-radius: 8px; /* Optional: Adds rounded corners */
}

.quick-links {
    flex: 1;
    background-color: lightblue;
    color: darkblue;
    padding: 1rem;
    border-radius: 8px;
}

.quick-links h2 {
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: darkblue;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

.quick-links ul li a.attention {
    color: red;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: underline;
    animation: blink 1s infinite;
}

.quick-links ul li a:hover {
    text-decoration: underline;
}

footer {
    background: rgba(51, 51, 51, 0.8);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* Responsive styles */
@media (max-width: 600px) {
    .main-content {
        flex-direction: column;
    }
    .image-frame {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .quick-links {
        margin-left: 0;
    }
}
