/* General styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header styling */
header h1 {
    text-align: center;
    font-size: 3.0rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    justify-content: center;
    align-items: center;   
    padding: 20px 20px;
    background-color: #abdde8;
    color: rgb(0, 0, 0);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-top: 20px;
    margin-left: 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer; 
    width: 100px; 
    text-align: center; 
    text-wrap: nowrap;

}

/* Navbar Styles */
/* Ensures the logo container takes up the full width */
.logo {
    display: flex;
    flex-direction: column; /* Align the logo image and text vertically */
    align-items: center;    /* Horizontally center the content */
    justify-content: center;/* Vertically center the content */
    width: 100%;            /* Full-width container */
    text-align: center;      /* Center the text */
    margin: 0 auto;         /* Ensure container is centered */
    margin-bottom: 25px;
    margin-top: 20px;
}

/* Adjust the image size and margins */
.logo-image {
    height: 35px;          /* Adjust the height as needed */
    width: auto;            /* Maintain aspect ratio */
    margin-bottom: 10px;    /* Space between logo and text */
}
/* Style for the logo text */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; 
    font-size: 22px;
    color: #ffffff;            /* Text color */
    margin: 0;              /* Remove any default margin */
}


/* Content section styling */
.about-content {
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.about-content strong {
    color: #3498db;
}

.about-content .closing {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 40px;
    color: #2c3e50;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80%;
    }
}

/* Footer Section Styling */
.footer-section {
    padding: 50px 0;
    background: #333;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

/* Flex container for logo and links */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
/* Footer left side (logo and email) */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 256px;
    margin-bottom: 25px;
}

.footer-email {
    font-size: 1em;
    color: #abdde8;
}

/* Footer right side (cookie and privacy links) */
.footer-right {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #abdde8;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Footer bottom (copyright) */
.footer-bottom {
    text-align: center;
    margin-top: 10px;
    color: #abdde8;
}

.footer-bottom p {
    font-size: 0.85em;
    color: #aaa;
    margin: 0;
}

#gradient {
    position: absolute;
    width: 100%;
    height: 150%;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4a4a4a), to(#000));
    background: -webkit-linear-gradient(top, #4a4a4a, #000);
    background: -moz-linear-gradient(top, #4a4a4a, #000);
    background: -ms-linear-gradient(top, #4a4a4a, #000);
    background: -o-linear-gradient(top, #4a4a4a, #000);
    background: linear-gradient(top, #4a4a4a, #000);
  }