main h1 {
    font-family: 'VujahdayScript', 'Courier', 'serif';
    font-size: 5.5rem;
    color: #CCCCFF;
    text-align: center;
    text-shadow: 3px 3px 3px #000000;
    letter-spacing: 10px;
}

.about-us {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 50px auto;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 10px #000000;
    border-radius: 8px;
}

.about-us-icons {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 50px auto;
}

.about-us h2 {
    color: #000000;
    font-family: "Oregano", "serif";
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 2.5px;
}

.about-us-icons h2 {
    color: #000000;
    font-family: "Oregano", "serif";
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 2px;
}

.about-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-us-p {
    font-size: 1.3rem;
    color: #000000;
    text-align: left;
    line-height: 1.5;
}

.about-us-img {
    margin: 30px;
    max-width: 500px;
    height: auto;
    box-shadow: 0px 0px 15px #000000;
    border-radius: 8px;
}

/* Card Styles*/
.about-us-icons .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 5px 15px #000000;
    padding: 10px;
    margin: 20px;
    text-align: center;
    width: 300px;
    height: 300px;
}

.fa-brands:before, .fa-regular:before, .fa-solid:before, .fa:before, .fab:before, .far:before, .fas:before {
    content: var(--fa);
    font-size: 3rem;
}

.fa-solid {
    color: #000000;
    padding-top: 40px;
}

.card-content h3 {
    color: #000000;
    font-size: 1.8rem;
    padding-top: 20px;
}

.card-content p {
    color: #000000;
    font-size: 1.2rem;
    padding-top: 20px;
}

/* Responsive styling */
@media (max-width: 1024px) {
    main h1 {
        font-size: 5rem;
        letter-spacing: 8px;
    }

    .about-us {
        margin: 30px auto;
    }

    .about-us-icons {
        margin: 30px auto;
    }

    .about-us h2 {
        font-size: 2.2rem;
    }

    .about-us-icons h2 {
        font-size: 2.2rem;
    }

    .about-us-p {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .about-us-img {
        margin: 20px;
        max-width: 300px;
    }

    .about-us-icons .card-container {
        gap: 0;
    }

    .card {
        width: 200px;
        height: 250px;
    }

    .fa-brands:before, .fa-regular:before, .fa-solid:before, .fa:before, .fab:before, .far:before, .fas:before {
        font-size: 2.5rem;
    }

    .fa-solid {
        padding-top: 20px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    main h1 {
        font-size: 4rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .about-us-icons h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-us-p {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .about-us-img {
        margin: 15px;
        max-width: 280px;
    }

    .card {
        width: 220px;
        height: 200px;
    }

    .fa-brands:before, .fa-regular:before, .fa-solid:before, .fa:before, .fab:before, .far:before, .fas:before {
        font-size: 2rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 435px) {
    main h1 {
        font-size: 3.5rem;
    }

    .about-us h2 {
        font-size: 1.8rem;
    }

    .about-us-content {
        flex-direction: column;
    }

    .about-us-icons h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .about-us-p {
        font-size: 0.9rem;
    }
    
    .about-us-img {
        margin: 15px;
        max-width: 100%;
        box-shadow: 0px 0px 5px #000000;
    }

    .card {
        width: 80%;
        height: 180px;
    }

    .fa-brands:before, .fa-regular:before, .fa-solid:before, .fa:before, .fab:before, .far:before, .fas:before {
        font-size: 1.8rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}