/* ===================================
   Mobile First Styles
   =================================== */

.environment-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* environment-intro */
.environment-intro {
    padding: 60px 20px;
    text-align: center;
}

.environment-intro-title {
    font-size: 24px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.6;
}

.environment-intro-text {
    font-size: 20px;
    font-family: 'Zen Old Mincho', serif;
    line-height: 2;
    margin: 0 auto;
}

/* Data Section */
.data-section {
    padding: 0 20px 60px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    @media (min-width: 640px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


.data-card {
    display: grid;
    border: 2px solid #77D4DA;
    /* Light Blue Border */
    border-top-right-radius: 20px;
    text-align: center;
    position: relative;
    background: #fff;
    border-top-left-radius: 0;
    border-top-left-radius: 0;
    box-shadow: 7.765px 7.765px 0 0 rgba(99, 210, 225, 0.25);
    /* Design accent */

    @media (min-width: 992px) {
        padding: 20% 20px 20px;
    }
}

.data-icon {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 15px 20px;

    @media (min-width: 992px) {
        padding: 10px 15px 20px;
    }
}

.data-icon img {
    height: 100%;
}

/* Card Header Label */
.data-card-header {
    background: var(--blue-gradient, linear-gradient(180deg, #1B1F83 29.81%, #06071D 100%));
    /* Dark Blue */
    color: #fff;
    display: inline-block;
    padding: 5px 1.25em;
    font-size: 1.25rem;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: -10px;
    width: fit-content;
    /* text-align: center; -> Left aligned per styling usually, but grid items are centered. Design shows left aligned label on card */
}

.data-card-body {
    color: #1b1f83;
    margin-top: auto;
    padding: 0px 5px 20px;
}

.data-number {
    font-size: 6em;
    font-weight: 400;
    font-family: Akshar;
    /* Or similar number font */
    line-height: 1;
    background: var(--blue-gradient, linear-gradient(180deg, #1B1F83 29.81%, #06071D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.data-unit {
    background: var(--blue-gradient, linear-gradient(180deg, #1B1F83 29.81%, #06071D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Digital Numbers";
    font-size: 2em;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.data-note {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    color: #444;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px auto 0;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    /* border-radius: 0; Design looks simple, maybe slightly boxy or generic card */
    background-color: #f6f6f6;
    /* Light Gray Background from design */
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #77D4DA;
    /* Green/Cyan color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        max-height: 50px;
    }
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 15px;
}

.benefit-detail {
    font-size: 14px;
    text-align: left;
    padding: 15px;
    border-radius: 10px;
}

/* Message Section */
.message-section {
    background: var(--gradient-gray);
    /* Light Green to Blue gradient */
    margin: 40px 20px 80px;
}

.message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.message-icon {
    flex-shrink: 0;
    width: 17%;
}

.message-icon-img {
    width: 100%;
    height: auto;
}

.message-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.message-content {
    padding: 20px;
}

.message-text {
    font-size: 14px;
    line-height: 1.8;
}

/* ===================================
   PC Styles (min-width: 992px)
   =================================== */
@media (min-width: 640px) {
    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {

    .data-card-header {}

    /* Data Grid - 3 columns */
    .data-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .environment-intro {
        padding: 100px 40px;
    }

    .environment-intro-title {
        font-size: 32px;
    }

    .environment-intro-text {
        font-size: 16px;
    }

    /* Data Grid - 3 columns */
    .data-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Benefits Grid - 2 columns */
    .benefit-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .benefit-card {
        padding: 60px 40px;
    }

    /* Message Section */
    .message-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .message-icon {
        flex-shrink: 0;
        width: 17%;
    }

    .message-title {
        font-size: 24px;
    }

    .message-text {
        font-size: 16px;
    }
}