/* Base font size */
html {
    font-size: 16px; /* 1rem = 16px */
}

/* For devices with a maximum width of 768px (e.g., tablets and smaller) */
@media only screen and (max-width: 768px) {
    html {
        font-size: 14px; /* 1rem = 14px */
    }
}

/* For devices with a maximum width of 480px (e.g., mobile phones) */
@media only screen and (max-width: 480px) {
    html {
        font-size: 12px; /* 1rem = 12px */
    }
}

body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



.logo-container {
    width: 100%;
    text-align: center;
}

.logo {
    width: 30rem;
    height: auto;
}

h1 {
    color: #333333;
    text-align: center;
}

p {
    color: #666666;
    font-size: 14px;
}

nav {
    width: 95%;
    margin: 0 auto;

}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    background-color: #333333;

}

nav ul li {
    display: inline;
    margin-right: 15px;

}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #111111;
}

/* Container holding all cards */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers cards horizontally */
    gap: 2rem; /* Space between cards */
    padding: 2rem;
}

/* Individual card styling */
.card {
    background-color: #f0f0f0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 80%;
    width: 100%;
}


/* Content within the card */
.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}


.card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.25;

}

table {
    display: flex;
    justify-content: center;
}

th {
    text-align: right;
}

th, td {
    height: 2.5rem;
    vertical-align: bottom;
}

.card-content ul {
    list-style-type: square; /* Sets the bullet point style; options include disc, circle, square */
}

.card-content li {
    color: #666666;
}

footer {
    text-align: center;
    margin-top: auto;
    font-size: 12px;
    color: #999999;
    justify-content: center;
}


.licence-container {

    display: flex;
    justify-content: center;

}

.licence-logo {

    margin-right: 2rem;
    width: 10rem;
    height: auto;
}

.abn-info {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 4.5rem; /* Match the logo's height */
    overflow: hidden; /* Prevent overflow issues */
    text-align: left;
}

.abn-info p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 0.8rem; /* Ensure text lines fit within the container */
} 