
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 180px;
    text-align: left !important;
}
h1 {
    text-align: center;
    font-size: 4.5em !important;
    color: #ffffff;
    margin-bottom: 40px !important;
}
.blog-content {
   background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
    overflow: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: #dfaf32;
    margin-bottom: 20px;
    font-size: 3em !important;
    text-transform: uppercase;
    margin-top: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlighted {
    background-color: rgb(104 104 109);
    color: white;
    padding: 6px;
    border-radius: 50px;
    font-weight: bold;
}

.read-more {
    display: inline-block;
    padding: 15px 25px;
    background-color: #dfb547;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}
li{
    margin-top: 15px;

}
.read-more:hover {
    background-color: #909090 !important;
    transition: 0.5s ease-in-out;
}

.scroll-down {
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 1.2em;
    color: #FD9800;
    cursor: pointer;
    text-decoration: none;
}

.scroll-down:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .blog-container {
   margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .blog-container {
        padding: 10px;
        margin-top: 30px;
    }
    h1 {
        font-size: 2.5em !important;
    }
    h2 {
        font-size: 2.0em !important;
    }
    .blog-content {
        padding: 20px;
    }
}