body {
    background-color: #f0f4ff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.content {
    text-align: center;
    padding: 20px;
    margin-bottom: 50px;
}

.content h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.content .text-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.content img {
    border-radius: 10px;
    margin-right: 0;
}

.content .text {
    max-width: 600px;
    text-align: left;
}

.content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.content .button {
    margin-top: 20px;
}

.content .button a {
    background-color: #4169E1;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.content .button a:hover {
    background-color: #365bb5;
}

.cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #f0f4ff;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    padding: 20px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 15px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.card h2 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 10px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.card .meta-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card .meta-left img:first-child {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 65px;
}

.card .meta-left div {
    display: flex;
    flex-direction: column;
}

.card .linkedin-logo {
    width: 64px;
    height: 34px;
    margin-left: auto;
    flex-shrink: 0;
}

.statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #f0f4ff;
}

.stat-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 110px;
}

.stat {
    text-align: center;
}

.stat .circle {
    background-color: white;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.stat .number {
    font-size: 36px;
    font-weight: bolder;
    color: #4169E1;
}

.stat .description {
    font-size: 20px;
    color: #4169E1;
    z-index: 2;
    position: relative;
    /* Ensures description is on top and readable */
}

.footer {
    background-color: #f0f4ff;
    /* Replace this color with the exact background color from your image */
    color: #4169E1;
    /* Match the text color */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer .logo {
    margin-right: 50px;
}

.footer .logo img {
    vertical-align: middle;
}

.footer .columns {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    flex-wrap: wrap;
}

.footer .column {
    flex: 1;
    margin-right: 50px;
    text-align: center;
    margin-bottom: 20px;
    /* Increased space between columns */
}

.footer .column:last-child {
    margin-right: 0;
}

.footer .column a {
    color: #4169E1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    /* Increased space between links */
}

.footer .column a:last-child {
    margin-bottom: 0;
}

.footer .contact-info span {
    display: block;
    margin-bottom: 10px;
    /* Increased space between contact info */
}

.footer .contact-info span:last-child {
    margin-bottom: 0;
}

.footer .contact-info {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
    /* Increased space between columns */
}

.footer .contact-info span {
    display: block;
    margin-bottom: 10px;
    /* Increased space between contact info */
}

.footer .contact-info span:last-child {
    margin-bottom: 0;
}

.footer .copyright {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 700px) {
    .content h1 {
        font-size: 28px;
    }

    .content .text-image-container {
        flex-direction: column;
        gap: 30px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        margin-bottom: 20px;
    }

    .statistics {
        flex-direction: column;
        padding: 20px 0;
    }

    .stat-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat .circle {
        width: 120px;
        height: 120px;
    }

    .stat .number {
        font-size: 24px;
    }

    .stat .description {
        font-size: 20px;
    }

    .text-image-container .text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .columns {
        margin: 30px 0;
    }

    .footer .column {
        margin-bottom: 15px;
    }

    .footer .contact-info {
        margin-bottom: 15px;
    }
}

/* Additional Styles for Screens Smaller than 500px */
@media screen and (max-width: 500px) {
    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .content .button a {
        padding: 10px 20px;
        font-size: 16px;
    }

    .card h2 {
        font-size: 16px;
    }

    .card p {
        font-size: 12px;
    }

    .footer .columns {
        text-align: center;
    }

    .stat .number {
        font-size: 20px;
    }
}