@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* About Us Section */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    border-radius: 10px;
    max-width: 1400px;
    margin: 100px auto;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    top: 800px;
}

/* About Us Image */
.about-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* About Us Content */
.about-content {
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    text-align: left; /* Aligns text to the left */
}

/* Headings */
h1, h2 {
    color: #333;
    text-align: left;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-top: 30px;
}

/* Paragraphs */
.about-content p {
    line-height: 1.6;
    color: #555;
    text-align: left;
}

/* Bullet Point List with Green Checkmarks */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* Style List Items */
.custom-list li {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Green Checkmark Styling */
.custom-list li i {
    color: #2bbc3c;
    font-size: 1.4em;
}

.footer {
    text-align: center !important;  /* Force center alignment */
}


.contact-btn {
    background-color: #dedddd; /* Dark button background */
    color: rgb(0, 0, 0);
    padding: 5px 30px;
    font-size: 15px;
    font-weight: 500;   
    border-radius: 10px; 
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
    top: 80%;
}

.contact-btn:hover {
    color: #2bbc3c;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 15px;
        margin: 80px 30px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .custom-list li {
        font-size: 1em;
    }

    .custom-list li i {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 30px 10px;
        margin: 60px 20px;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.7em;
    }

    .custom-list li {
        font-size: 0.75em;
    }

    .custom-list li i {
        font-size: 1.1em;
    }
}
