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

body {
    font-family: 'Noto Sans', sans-serif;
    /* font-family: 'Cuprum', sans-serif; */
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header {
    border-bottom: 2px solid #FF8000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    height: 40px;
}

.back-link {
    color: #2D313D;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid #2D313D;
    border-radius: 4px;
    transition: all 0.3s;
}

.back-link:hover {
    background: #2D313D;
    color: white;
}

h1 {
    color: #2D313D;
    font-size: 24px;
    margin-bottom: 10px;
}


h2 {
    color: #2D313D;
    font-size: 20px;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF8000;
}

h3 {
    color: #2D313D;
    font-size: 18px;
    margin: 20px 0 10px;
}



h4 {
    color: #2D313D;
    font-size: 16px;
    margin: 15px 0 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin: 10px 0 15px 25px;
}

li {
    margin-bottom: 8px;
    position: relative;
}

.company-info {
    background: #f0f0f0;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.highlight {
    background: #fff8e1;
    padding: 10px 15px;
    margin: 15px 0;
    border-left: 3px solid #FF8000;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #FF8000;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #FF8000;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}


.highlight-box {
    background: #f9f9f9;
    padding: 15px;
    margin: 15px 0;
    border-left: 3px solid #FF8000;
}



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

    .logo-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }
}

