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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    color: #ff5722;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.contact {
    font-size: 0.95rem;
    color: #666;
    margin: 20px 0 30px 0;
}

.contact a {
    color: #ff5722;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.btn-download {
    display: inline-block;
    background-color: #ff5722;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-download:hover {
    background-color: #e64a19;
}

.whistleblowing {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #ff5722;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.whistleblowing p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.whistleblowing a {
    color: #ff5722;
    text-decoration: none;
}

.whistleblowing a:hover {
    text-decoration: underline;
}

.whistleblowing ul {
    list-style-position: outside;
    margin-left: 40px;
    margin-top: 30px;
}

.whistleblowing ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .whistleblowing {
        padding: 30px 20px;
    }

    .whistleblowing ul {
        margin-left: 20px;
    }

    .container {
        padding: 20px 15px;
    }
}
