/* Google Fonts Import */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

    /* Main body text font */
    .resilience-project {
        font-family: 'Open Sans', sans-serif; 
        color: #333333;
        line-height: 1.6;
    }

    /* Heading font */
    .resilience-project h1, 
    .resilience-project h2, 
    .resilience-project h3 {
        font-family: 'Montserrat', sans-serif; 
    }

    /* Main heading with color emphasis */
    #main-title {
        text-align: center;
        color: #1a252f;
        font-size: 2.5rem;
        margin-top: 2vw;
    }

    /* Subheading color emphasis */
    .resilience-project h2 {
        color: #2980b9; 
        border-bottom: 2px solid #2980b9;
        padding-bottom: 5px;
    }

    .resilience-project h3 {
        color: #16a085; 
        margin-top: 1.5em;
    }

    /* CSS Box Model: padding in % and margins in vw */
    .resilience-card {
        background-color: #f9fbfd;
        padding: 5%;
        margin: 4vw auto;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-width: 800px;
    }

    .resilience-project img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 1rem;
        display: block;
    }

    /* Hiding the <hr> since the cards create visual separation */
    .resilience-project hr {
        display: none; 
    }