main {
    background-color: #101e2b;
    color: #fff;
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding: 2rem 0;
}

.header {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.header img {
    max-width: 350px;
    height: auto;
    margin-bottom: 1.5rem;
}

.header p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.header p:first-of-type {
    font-style: italic;
    font-weight: 600;
    color: #f1cd1c;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #f1cd1c;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #f1cd1c;
}

.section-subtitle {
    font-size: 1.5rem;
}

.content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.content div {
    margin-bottom: 2.5rem;
}

.content strong {
    display: block;
    font-size: 1.2rem;
    color: #f1cd1c;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #fff !important;
}

.content p:last-child {
    margin-bottom: 0;
}

.content a {
    color: #f1cd1c;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.content a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.download-section {
    background-color: rgba(241, 205, 28, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #f1cd1c;
}

@media (min-width: 768px) {
    .header p {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content strong {
        font-size: 1.3rem;
    }
}