body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

/* Content Block Styles */
#content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Alert Message Styles */
.alert {
    padding: 20px;
    margin-bottom: 40px;
    border: none;
    border-radius: 10px;
    background-color: #c6efd5;
    color: #3e8e41;
    font-weight: bold;
}

.alert-success {
    background-color: #c6efd5;
}

/* Heading Styles */
h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 36px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Paragraph Styles */
p {
    font-size: 18px;
    line-height: 1.8;
}

.quote {
    border: 2px solid #4CAF50;
    border-radius: 10px;
    background-color: #c6efd5;
    font-style: italic;
    font-size: 20px;
    color: #333;
    margin-bottom: 60px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    color: #fff;
    background-color: #4CAF50;
}

.btn-primary:hover {
    background-color: #3e8e41;
}

.badge-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    max-width: 100%; /* Add this to ensure the image doesn't exceed its parent's width */
}

.hr-category-gradient {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, #4a4a4a, transparent);
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #content {
        padding: 10px;
        margin: 20px auto;
    }
    .btn {
        display: block;
        margin: 20px auto;
    }
}

/* Animations */
.animate {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}