@charset "utf-8";
/* CSS Document */
.label  {font-size:1.2rem}
.checkbox, .radio {line-height:1.8}

.field {
    /* padding:15px;  */
     padding-top:25px;  
    border-top:1px solid #f4f4f4
}
.container {max-width:1000px !important; padding:25px}
.title {font-size:2.2rem}
p strong {font-size:1.5rem; font-weight:500; float:left; width:100%}
p, li {margin-bottom:5px;}
.content h3 {
    font-size: 1.8em;
}
.box {
    padding-top:30px;
    padding-bottom:30px;
}
/* Base styles */
.has-text-grey-dark {
    float: right;
    width: 100%;
    margin-top: -15px;
    opacity: 0.8;
    text-align: right;
}

.image {
    float: left;
}

.subtitle {
    float: right;
    width: calc(100% - 150px);
    text-align: right;
    margin-top: -10px !important;
}

.notification-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: fixed; */
    /* background-color: #f5f5f5; */
    margin-bottom: 15px;
}

.notification-box {
    /* max-width: 500px; */
    width: 100%;
    text-align: center;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    /* For tablets and smaller devices */
    .has-text-grey-dark {
        width: 100%;
        margin-top: 10px;
        text-align: left; /* Adjusted for smaller screens */
    }

    .image {
        width: 100%; /* Make the image full-width on smaller screens */
        float: none;
        margin-bottom: 15px; /* Add some space below image */
    }

    .subtitle {
        width: 100%; /* Full width for subtitle */
        text-align: left; /* Align text to the left */
        margin-top: 0 !important; /* Reset margin on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    /* For mobile devices */
    .has-text-grey-dark {
        margin-top: -15px; /* More space on top */
        text-align: left; /* Left-aligned text for mobile */
    	margin-bottom:15px;
	}

    .image {
        width: 100%;
        float: none;
        margin-bottom: 10px; /* Slight margin for image on mobile */
    }

    .subtitle {
        width: 100%; /* Full width on mobile */
        text-align: left; /* Text alignment for smaller screens */
    }
}

