@font-face {
    font-family: 'Sk-Bold';
    src: url('../Fonts/Sk-Modernist-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sk-Regular';
    src: url('../Fonts/Sk-Modernist-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Sk-Regular', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-text,
.conclusion-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.section-title {
    font-family: 'Sk-Bold', Arial, sans-serif;
    font-size: 24px;
    color: #c52825;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

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

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

    .intro-text,
    .conclusion-text,
    p {
        font-size: 16px;
    }
}

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

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

    .intro-text,
    .conclusion-text,
    p {
        font-size: 14px;
    }
}
