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

body {
    font-family: "Poppins", sans-serif;
    background-color: #f38128;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 30px;
}

.header {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background-color: #ff9644;
    border: 3px solid #6b360c;
    border-radius: 15px;
    padding: 25px;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    color: #ffffff;
}

.info-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

.info-box-kontak {
    background-color: #ff9644;
    border: 3px solid #6b360c;
    border-radius: 15px;
    padding: 25px;
}

.info-box-kontak h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
    color: #ffffff;
}

.info-box-kontak p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 110px 30px 20px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .info-boxes {
        gap: 18px;
        margin-bottom: 35px;
    }

    .info-box,
    .info-box-kontak {
        padding: 22px;
    }

    .info-box h3,
    .info-box-kontak h3 {
        font-size: 19px;
        margin-bottom: 13px;
    }

    .info-box p,
    .info-box-kontak p {
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 100px 25px 20px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .last-updated {
        font-size: 13px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

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

    .section-subtitle {
        font-size: 14px;
    }

    .info-boxes {
        gap: 16px;
        margin-bottom: 32px;
    }

    .info-box,
    .info-box-kontak {
        padding: 20px;
        border-radius: 12px;
    }

    .info-box h3,
    .info-box-kontak h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .info-box p,
    .info-box-kontak p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 70px 20px 22px;
    }

    h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .last-updated {
        font-size: 12.5px;
    }

    .intro-text {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 23px;
    }

    .section-subtitle {
        font-size: 13.5px;
    }

    .info-boxes {
        gap: 15px;
        margin-bottom: 30px;
    }

    .info-box,
    .info-box-kontak {
        padding: 19px;
        border-radius: 12px;
        border: 2.5px solid #6b360c;
    }

    .info-box h3,
    .info-box-kontak h3 {
        font-size: 17.5px;
        margin-bottom: 11px;
    }

    .info-box p,
    .info-box-kontak p {
        font-size: 12.5px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 100px 15px 20px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .last-updated {
        font-size: 12px;
    }

    .intro-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .info-boxes {
        gap: 14px;
        margin-bottom: 28px;
    }

    .info-box,
    .info-box-kontak {
        padding: 18px;
        border-radius: 12px;
        border: 2.5px solid #6b360c;
    }

    .info-box h3,
    .info-box-kontak h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .info-box p,
    .info-box-kontak p {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 100px 12px 18px;
    }

    h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .last-updated {
        font-size: 11px;
    }

    .intro-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .info-boxes {
        gap: 12px;
        margin-bottom: 25px;
    }

    .info-box,
    .info-box-kontak {
        padding: 16px;
        border-radius: 10px;
        border: 2px solid #6b360c;
    }

    .info-box h3,
    .info-box-kontak h3 {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .info-box p,
    .info-box-kontak p {
        font-size: 11px;
        line-height: 1.5;
    }
}
