/* Basic Resets */
body, h1, .card-header button {
    margin: 0;
    padding: 0;
}

/* Body Styling */
body {
    background-color: #e5e5e5; /* Neutral grey background */
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    margin-bottom: 20px;
}

/* Header Styling */
body header.container-fluid {
    color: #504f4f!important;
    text-align: left!important;
    margin-bottom: 20px;
}

.header-title {
    display: flex;
    align-items: center; /* Vertically aligns the image and text in the center */
}

.header-icon {
    height: 30px; /* Adjust as necessary */
    width: auto; /* Maintains the aspect ratio */
    margin-right: 100px; /* Space between the icon and the title */
}

/* Accordion/Card Styling */
.card {
    border: none; /* Removes card border */
    background: none; /* No background color for card */
}

.card-header {
    background: none; /* No background color for card header */
}

.card-header button {
    font-weight: bold;
    color: #504f4f!important;
    text-align: left;
    width: 100%;
    text-decoration: none; /* Removes underline from links */
}

.card-body {
    padding: 1rem; /* Padding inside answer block */
}

h1 {
    font-size: 1rem;
    font-weight: bold;
}

.card-header button:active {
    text-decoration: none; /* Removes underlining */
}

.header-icon {
    height: 40px; /* Adjust the size as needed */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between the icon and the title */
    vertical-align: middle; /* Align with the middle of the text */
}

.custom-list {
    list-style-type: disc; /* Removes default bullets */
    padding-left: 0;
}

.card-header .col, .card-header .col-auto {
    padding-right: 0; /* Removes right padding */
    padding-left: 0;  /* Removes left padding */
}


/* Desktop Specific Styling */
@media (min-width: 768px) {
    .container {
        max-width: 70%; /* Adjust width percentage as needed */
    }

    .container-fluid {
        margin-left: 10%;
    }

    .card-header, .card-body {
        padding-left: 0; /* Align text blocks to the left */
    }

    header, .card-header button, .card-body {
        font-size: 1.1rem; /* Standard font size for desktop */
    }

    .accordion-card {
        max-width: 800px; /* Adjust this width as desired */
    }

    h1 {
        font-size: 1.1rem;
    }

    ul.custom-list li {
        content: '•'; /* Custom bullet symbol */
        padding-left: 20px;
        margin-left: 40px;    
        margin-bottom: 15px;
    }
}

/* Mobile Specific Styling */
@media (max-width: 767px) {
    .container-fluid {
        margin-left: 2%;
    }

    .card-header, .card-body {
        padding-left: 0; /* Align text blocks to the left */
    }

    header, .card-header button, .card-body {
        font-size: 1.25rem; /* Larger font size for mobile readability */
    }       

    h1 {
        font-size: 1.25rem;
    }

    subtitle {
        font-size: 1.25rem;
    }

    ul.custom-list li {
        content: '•'; /* Custom bullet symbol */
        padding-left: 10px;
        margin-left: 30px;    
        margin-bottom: 15px;
    }
}
