@media screen and (max-width: 768px) {
    .first-section {
        margin-top: 80px;
        padding: 40px 0;

        .first-title {
            font-size: 24px;
        }
    }

    .stats-section {
        padding-bottom: 20px;
    }

    .sectors-section {
        .section-title {
            margin-bottom: 40px;
            font-size: 24px;
        }

        .sectors-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;

            .sector-item {
                padding: 8px;
                gap: 4px;

                > img {
                    max-width: 48px;
                    margin-bottom: 8px;
                }

                > p:nth-child(2) {
                    margin-bottom: 0px;
                    font-size: 13px;
                }
            }
        }
    }

    .newstats-section {
        margin: 0px 16px;
        padding-top: 32px;

        .newstats-container {
            .newstat-card {
                .newstat-card-header {
                    display: flex;
                    flex-direction: row;
                    align-items: start;

                    .newstat-title {
                        font-size: 16px;
                    }

                    .newstat-year {
                        line-height: normal;
                    }
                }

                .newstat-value {
                    margin-top: 16px;
                    font-size: 36px;
                }
            }
        }
    }
}
