/* Global Reset & Base Styles */
@keyframes pulseIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }

    80% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", sans-serif;
    overflow-x: hidden;
    width: 100%;
    background: #FFFFFF;
    height: 100%;
}

.use-mobile {
    display: none !important;
}

.use-desktop {
    display: inherit !important;
}

/* Header Styles */
.global-header {
    position: fixed;
    width: 100%;
    height: 76px;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.global-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.global-header .mobile-only {
    margin-top: 16px;
    display: none;
}

.global-header nav img {
    height: 70px;
}

.global-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.global-header nav ul li {
    cursor: pointer;
    font-size: 16px;
    color: white;
}

.global-header button {
    padding: 16px 32px;
    background: #3147FC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Static Area Styles */
.static-area {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('/assets/bg/bg-static-area.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.static-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.static-area-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    color: white;
    text-align: center;
    z-index: 3;
}

.static-area-content h5 {
    font-size: 24px;
    font-weight: 500;
}

.gradient-overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 그라데이션 높이 조절 */
    margin-top: 100vh;
    /* main과 동일한 margin-top */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.8) 80%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

/* Main Content Area */
main {
    position: relative;
    background: #000000;
    z-index: 2;
    padding-top: 80px;
}

/* Service Introduction */
.service-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 1000px;
}

.service-intro h5 {
    font-size: 24px;
    color: #666;
}

.service-intro img {
    max-width: 1222px;
    width: 100%;
}

/* Problem Statement */
.problem-statement {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 770px;
    width: 100%;
    background: #000000;
    padding-top: 120px;
    overflow: hidden;
}

.problem-statement>div {
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: url('/assets/bg/bg-question.png');
    background-repeat: no-repeat;
    /* 반복 없애기 */
    background-position: center;
    /* 가운데 정렬 */
    background-size: 148px;
}

.problem-statement h4 {
    width: 455px;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 42px;
    text-align: center;
    color: #FFFFFF;
    background-color: #000;
}

/* User Concerns */
.user-concerns {
    position: relative;
    width: 100%;
    min-height: 445px;
    background: #000000;
    padding: 0 40px;
}

.user-concerns .bubbles-container {
    position: relative;
    max-width: 1500px;
    height: 330px;
    margin: 0 auto;
}

.user-concerns>div {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.user-concerns .bubble {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 17.6px;
    background: #F8F8F8;
    border-radius: 24px;
}

.user-concerns .bubble-mobile {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.user-concerns .bubble-mobile .chat-bubble {
    display: flex;
    align-items: center;
    background: #F8F8F8;
    padding: 10px;
    border-radius: 10px;
    gap: 6px;
}

.user-concerns .bubble-mobile .bubble-m {
    width: 20px;
    height: 20px;
}

.user-concerns .bubble-mobile:nth-child(1) {
    margin-top: 253px;
}

.user-concerns .bubble-mobile:nth-child(2) {
    justify-content: flex-end;
    margin-top: 105px;
}

.user-concerns .bubble-mobile:nth-child(3) {
    margin-top: 108px;
}

.user-concerns .bubble-mobile .emoji {
    width: 22px;
    height: 22px;
}

.user-concerns .bubble:nth-child(1) {
    width: 558.6px;
    height: 88px;
    left: 201.3px;
    top: -100px;
}

.user-concerns .bubble:nth-child(2) {
    width: 440.6px;
    height: 88px;
    right: 165.9px;
    top: -22px;
}

.user-concerns .bubble:nth-child(3) {
    width: 535.6px;
    height: 108px;
    left: 60.5px;
    top: 76.59px;
}

.user-concerns .bubble:nth-child(4) {
    width: 439px;
    height: 88px;
    right: 59.5px;
    top: 142.81px;
}

.user-concerns .bubble .emoji {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.34902));
}

.user-concerns .bubble p {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #222222;
}

.user-concerns .bubble p span {
    color: #3147FC;
    font-weight: 600;
}

.user-concerns .character {
    position: absolute;
    width: 409px;
    height: 312px;
    left: calc(50% - 409px/2);
    top: 133px;
}

/* Solution Statement */
.solution-statement {
    width: 100%;
    height: 977px;
    background: #3147FC;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-statement div {
    width: 594px;
    text-align: center;
}


.solution-statement h2 {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.solution-statement h1 {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.solution-statement span {
    font-size: 100px;
}

/* Donation Section */

/* 하단 이미지 */

.make-beautiful-world {
    background-image: url('/assets/bg/bg-beautiful-world.png') !important;
    background-size: cover;
    background-position: center;
    min-height: 681px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.make-beautiful-world>p {
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
}

.make-beautiful-world button {
    min-width: 350px;
}


/* Footer Styles */
.global-footer {
    background: #292F36;
    padding: 60px 0;
}

.global-footer footer {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-footer footer div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.global-footer img {
    height: 54px;
    width: 64px;
}

.global-footer ul {
    list-style: none;
    color: #EBEBEB;
    display: flex;
    gap: 12px;
}

.global-footer ul li {
    position: relative;
    font-size: 14px;
    color: #EBEBEB;
}

.global-footer h6 {
    color: #EBEBEB;
    font-size: 14px;
}

.global-footer ul li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: rgba(235, 235, 235, 0.3);
    /* EBEBEB with 30% opacity */
}

.global-footer h6 {
    color: #EBEBEB;
    font-size: 14px;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    background: #FFFFFF;
    z-index: 3;
    padding-top: 100px;
}

/* Donation Section */
.donation-section {
    position: relative;
    padding-top: 320px;
    text-align: center;
    overflow: hidden;
    min-height: 1314px;
    padding-bottom: 600px;
    max-width: 1314px;
    margin: 0 auto;
}

.donation-section>p {
    position: absolute;
    font-size: 40px;
    line-height: 1.5;
    color: #000;
    z-index: 3;
    text-align: left;
    top: 0;
}

.donation-section>p span {
    color: #3147FC;
    font-weight: 600;
}

.donation-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donation-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 20px 30px;
}

.step img {
    width: 115px;
    height: 115px;
}

.ellipse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    pointer-events: none;
    opacity: 0;
    animation: pulseIn 1.2s cubic-bezier(0.17, 0.67, 0.3, 1.33) forwards;
}

.ellipse.small {
    width: 956px;
    height: 956px;
    z-index: 1;
}

.ellipse.large {
    width: 1314px;
    height: 1314px;
    z-index: 0;
}

/* App Download & Usage Sections */
.app-download-section,
.app-usage-section {
    width: 1141px;
    margin: 0 auto;
    padding: 0;
    min-height: 747px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-preview {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.app-preview.reverse {
    padding-left: 130px;
    flex-direction: row-reverse;
}

.phone-container {
    position: relative;
    width: 582px;
    height: 677px;
}

.app-info {
    width: 329px;
}

/* ESG Section */
.esg-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    min-height: 100vh;
    width: 100%;
}

.esg-content {
    position: relative;
    max-width: 1430px;
    margin: 0 auto;
    min-height: 600px;
    background-image: url('/assets/bg/bg-esg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.esg-content p {
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 600;
    padding: 40px 0;
    max-height: 60px;
    text-align: center;
    justify-content: center;
}

.esg-content p span {
    color: #3147FC;
    font-weight: 700;
}

.esg-section>img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1290px;
    z-index: 1;
}

/* App Usage Section */
.app-usage-section {
    width: 1141px;
    margin: 0 auto;
    padding: 0;
    min-height: 747px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-usage-section .app-info {
    width: 226px;
    text-align: right;
}

.app-usage-section .app-info h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    text-align: right;
}

.app-usage-section .app-info h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #414141;
    text-align: right;
}

.app-usage-section .phone-container {
    position: relative;
    width: 582px;
    height: 677px;
}

.app-usage-section .phone {
    position: relative;
    width: 331px;
    height: 677px;
    z-index: 2;
    left: 32.22px;
}

.app-usage-section .shadow {
    position: absolute;
    bottom: -20px;
    width: 331px;
    height: auto;
    z-index: 1;
    left: 32.22px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-image: url('/assets/bg/bg-beautiful-world.png');
    background-size: cover;
    background-position: center;
    min-height: 681px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.cta-section p {
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 40px;
}

.cta-section button {
    min-width: 350px;
    padding: 16px 32px;
    background: #3147FC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-download-section {
    position: relative;
    padding-top: 320px;
    text-align: center;
    overflow: visible;
    min-height: 1314px;
    max-width: 1141px;
    margin: 0 auto;
}

.app-download-section>p {
    position: absolute;
    font-size: 40px;
    line-height: 1.5;
    color: #000;
    z-index: 3;
    text-align: left;
    top: 0;
}

.app-download-section>p span {
    color: #3147FC;
    font-weight: 600;
}

.app-download-section .app-preview {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.app-download-section .phone-container {
    position: relative;
    width: 582px;
    height: 677px;
}

.app-download-section .phone {
    position: relative;
    width: 331px;
    height: 677px;
    z-index: 2;
    left: 219.17px;
}

.app-download-section .phone-shadow {
    position: absolute;
    bottom: -20px;
    width: 331px;
    height: auto;
    z-index: 1;
    left: 219.17px;
}

.app-download-section .app-info {
    text-align: left;
}

.app-download-section .app-info h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.app-download-section .app-info h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #414141;
}

/* Make Beautiful World Section */
.make-beautiful-world {
    background-image: url('/assets/bg/bg-beautiful-world.png');
    background-size: cover;
    background-position: center;
    min-height: 681px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.make-beautiful-world>p {
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 40px;
}

.make-beautiful-world button {
    min-width: 350px;
    padding: 16px 32px;
    background: #3147FC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.make-beautiful-world button:hover {
    background: #2539E0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 630px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #3147FC;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #2539E0;
}

/* 기본 애니메이션 스타일 */
[data-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animation].animate {
    opacity: 1;
    transform: translateY(0);
}

/* 말풍선 애니메이션 전용 스타일 */
.bubble[data-animation] {
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bubble[data-animation].animate {
    transform: scale(1) translateY(0);
}

/* 원형 이미지 스타일 */
.ellipse[data-animation] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    /* 초기 상태 */
    transform-origin: center center;
    pointer-events: none;
    opacity: 0;
    transition: none;
    /* 기존 data-animation transition 제거 */
}

.ellipse.small[data-animation].animate {
    animation: pulseIn 1.2s cubic-bezier(0.17, 0.67, 0.3, 1.33) forwards;
    animation-delay: 0.6s;
    /* donation-steps가 보이고 난 후 시작 */
}

.ellipse.large[data-animation].animate {
    animation: pulseIn 1.2s cubic-bezier(0.17, 0.67, 0.3, 1.33) forwards;
    animation-delay: 0.4s;
    /* 큰 원이 먼저 시작 */
}

/* Donation Steps 애니메이션 */
.donation-steps[data-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.donation-steps[data-animation].animate {
    opacity: 1;
    transform: translateY(0);
}

/* 딜레이 클래스들 */
[data-delay="0"] {
    transition-delay: 0s;
}

[data-delay="1"] {
    transition-delay: 0.2s;
}

[data-delay="2"] {
    transition-delay: 0.4s;
}

[data-delay="3"] {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .global-header>nav>ul>li>button {
        font-size: 12px;
    }

    .global-header .pc-only {
        display: none !important;
    }

    .global-header .mobile-only {
        display: block;
    }

    .donation-section,
    .app-download-section,
    .app-usage-section {
        width: 100%;
        padding: 40px 20px;
    }

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

    .app-preview.reverse {
        flex-direction: column;
    }

    .phone-container {
        width: 100%;
        max-width: 582px;
        height: auto;
    }

    .app-info {
        width: 100%;
        text-align: center;
    }

    .esg-content {
        margin: 0 20px;
    }

    .app-download-section {
        padding: 200px 20px 0;
    }

    .app-download-section .app-preview {
        flex-direction: column;
        align-items: center;
    }

    .app-download-section .app-info {
        text-align: center;
        margin-top: 40px;
    }

    .app-usage-section {
        width: 100%;
        padding: 40px 20px;
    }

    .app-usage-section .app-info {
        width: 100%;
        text-align: center;
    }

    .app-usage-section .app-info h1,
    .app-usage-section .app-info h3 {
        text-align: center;
    }

    .esg-content {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {

    .use-mobile {
        display: inherit !important;
    }

    .use-desktop {
        display: none !important;
    }

    .donation-section>p,
    .app-download-section>p,
    .app-usage-section>p {
        font-size: 32px;
    }

    .global-footer footer div {
        gap: 12px;
    }

    .global-footer ul {
        flex-direction: column;
        gap: 8px;
    }

    /* 모바일에서는 구분자 제거 */
    .global-footer ul li::after {
        display: none;
    }

    .step img {
        width: 80px;
        height: 80px;
    }

    .ellipse {
        width: 100%;
        height: auto;
    }

    .cta-section p {
        font-size: 32px;
        padding: 0 20px;
    }

    .app-download-section>p {
        font-size: 32px;
        width: 100%;
        text-align: center;
    }

    .app-download-section .phone-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .app-download-section .phone,
    .app-download-section .phone-shadow {
        position: relative;
        left: 0;
        width: 80%;
        height: auto;
    }

    .app-download-section .phone-shadow {
        position: absolute;
        bottom: -20px;
    }

    .make-beautiful-world>p {
        font-size: 32px;
        line-height: 1.4;
        padding: 0 20px;
        text-align: center;
    }

    .app-download-section {
        padding: 0;
        min-height: 0;
    }

    .app-usage-section>p {
        font-size: 32px;
    }

    .app-usage-section .phone-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .app-usage-section .phone,
    .app-usage-section .shadow {
        position: relative;
        left: 0;
        width: 80%;
        height: auto;
    }

    .solution-statement {
        height: 100dvh;
    }

    .solution-statement h2 {
        font-size: 18px;
        color: #FFFFFF;
    }

    .solution-statement h1 {
        font-size: 22px;
        color: #FFFFFF;
    }

    .solution-statement span {
        font-size: 32px !important;
        color: #FFFFFF;
    }

    .ellipse.small {
        width: 80%;
        height: auto;
    }

    .ellipse.large {
        width: 95%;
        height: auto;
    }

    .donation-section {
        min-height: 0;
        height: 100dvh;
        padding-bottom: 0;
    }

    .donation-content {
        margin-top: 100px;
        height: auto;
        min-height: auto;
    }

    .donation-steps .arrow {
        width: 30px;
        height: auto;
    }

    .esg-content p {
        font-size: 32px;
        padding: 0 20px;
    }

    .service-intro {
        min-height: 400px !important;
    }

    .user-concerns {
        padding-bottom: 200px;
    }

    .user-concerns .character {
        width: 189px;
        height: auto;
        left: calc(50% - 188px/2);
        top: 390px;
    }

    .problem-statement {
        min-height: auto !important;
    }

    .problem-statement h4 {
        font-size: 24px;
    }

    .esg-section {
        padding: 0 !important;
        display: flex;
        align-items: center;
    }

    .esg-content {
        width: 90dvw;
        height: auto;
        min-height: 130px;
    }

    .make-beautiful-world {
        min-height: 0;
        padding: 4rem 2rem;
    }

    .make-beautiful-world p {
        padding: 0;
    }
}

@media (max-width: 390px) {

    .donation-section>p,
    .app-download-section>p,
    .app-usage-section>p {
        font-size: 24px;
    }

    .step {
        padding: 10px;
    }

    .step img {
        width: 60px;
        height: 60px;
    }

    .cta-section p {
        font-size: 24px;
    }

    .cta-section button {
        min-width: 280px;
        font-size: 16px;
    }

    .app-download-section>p {
        font-size: 24px;
    }

    .app-download-section .app-info h1 {
        font-size: 28px;
    }

    .app-download-section .app-info h3 {
        font-size: 20px;
    }

    .make-beautiful-world>p {
        font-size: 24px;
    }

    .make-beautiful-world button {
        min-width: 280px;
        font-size: 16px;
    }

    .app-usage-section .app-info h1 {
        font-size: 28px;
    }

    .app-usage-section .app-info h3 {
        font-size: 20px;
    }

    .esg-content p {
        font-size: 24px;
    }
}