body {

    font-family: 'Monomakh', sans-serif;

    background-color: #f8f9fa;

    color: #333;

    margin: 0;

    padding: 0;

}

.navbar {

    background-color: #2D336B;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;

}

.brand-name h1 {

    color: #ffffff;

    margin: 0;

}

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}

.hamburger div {

    width: 25px;

    height: 3px;

    background-color: #ffffff;

    margin: 4px 0;

}

.nav-buttons {

    display: flex;

    margin-left: auto;

}

.nav-buttons a {

    color: #ffffff;

    text-decoration: none;

    margin: 0 10px;

    font-size: 1rem;

    padding: 5px 10px;

    border-radius: 5px;

}

.nav-buttons a:hover {

    background-color: black;

}

.logout-button {

    background-color: #7886C7;

    padding: 5px 10px;

    border-radius: 5px;

}

.logout-button:hover {

    background-color: black;

}

.card {

    border: none;

    border-radius: 15px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    background-color: #ffffff;

    text-align: center;

    padding: 20px;

    margin: 20px;

    transition: transform 0.3s, box-shadow 0.3s;

}

.card:hover {

    transform: scale(1.15);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}

.card img {

    width: 100px;

    height: 100px;

    margin-bottom: 20px;

}

.card-title {

    font-size: 1.5rem;

    color: #2D336B;

}

.card-text {

    font-size: 1rem;

    color: #6c757d;

}

.btn-primary {

    background-color: #7886C7;

    border: none;

    border-radius: 5px;

    padding: 10px 20px;

    color: #ffffff;

    font-size: 1rem;

}

.btn-primary:hover {

    background-color: #000000;

}

footer {

    background-color: #2D336B;

    color: #ffffff;

    text-align: center;

    padding: 20px 0;

    position: relative;

    width: 100%;

    bottom: 0;

}

.animate__animated {

    animation-duration: 1s;

}

.section-title {

    font-size: 2rem;

    color: #2D336B;

    margin-top: 40px;

    margin-bottom: 20px;

    text-align: center;

    border-bottom: 2px solid #7886C7;

    padding-bottom: 10px;

}

.container {

    margin-bottom: 60px;

}
/* Hamburger Menu Styles */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger div {

    width: 25px;

    height: 3px;

    background-color: white;

    margin: 4px;

    transition: all 0.3s ease;

}



/* Media Queries for Responsiveness */

@media (max-width: 1200px) {

    .features {

        flex-direction: column;

        align-items: center;

    }



    .features div {

        width: 80%;

        margin-bottom: 20px;

    }

}



@media (max-width: 768px) {

    .navbar {

        flex-direction: row;

        align-items: center;

    }



    .nav-buttons {

        display: none;

    }



    .hamburger {

        display: flex;

    }



    .nav-buttons.active {

        display: flex;

        flex-direction: column;

        width: 100%;

    }



    .hero {

        padding: 20px;

        height: auto;

    }



    .hero h1 {

        font-size: 2em;

    }



    .hero p {

        font-size: 1em;

    }

}



@media (max-width: 480px) {

    .hero h1 {

        font-size: 1.5em;

    }



    .hero p {

        font-size: 0.9em;

    }



    .testimonial-card {

        min-width: 100%;

        max-width: 100%;

    }

}

