body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #050a30 !important;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}



.logo {
    text-decoration: none;
    color: white;
    
    font-size: 1.5em;
    font-family: 'Product' 'Sans';
}



.navigation a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 400;
    padding-left: 30px;
    background-color: transparent   ;
}


.navigation a:hover {
    color: antiquewhite;
}

.header-logo {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    padding: 100px 50px;
    width: 250px;
}
    
section.container {
    margin-top: 30px;
    flex-grow: 1;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    
    
}

.center-align {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: 545;
    font-family: 'Times New Roman', Times, serif;
    padding-bottom: 10px;
    padding-top: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col {
    box-sizing: border-box;
    padding: 10px;
}

.col.s12 {
    width: 100%;
}

.col.m6 {
    width: 48%;
}

.col.l4 {
    width: 31%;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px; 
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px; 
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
    border-radius: 8px 8px 0 0;
}


.card-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500 !important;
    font-family: 'Times New Roman', Times, serif;
    margin: 0 0 10px 0;
    color: #333;
}



p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-grow: 1; 
    font-family: 'Product' 'Sans';
}


.details-btn {
    background-color: #131c63;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.details-btn:hover {
    background-color: #050a30;
}

.details-btn a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
    .col.m6 {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .col.s12 {
        width: 100%;
    }
    
    .card-content {
        padding: 15px;
    }

    .details-btn {
        width: 100%;
        text-align: center;
    }
}

strong {
    font-weight: 600; 
}


header {
    background-color: #050a30;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.navigation {
    display: flex;
}

@media (max-width: 768px) {
    .hamburger {
        display: block; 
        color: white;
        font-size: 1.5em;
    }

    .navigation {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #050a30;
        width: 100%;
    }

    .navigation.active {
        display: flex; 
    }

    .navigation a {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2em;
    }
}