
/* Title Header */
.rustdesk-section h1 {
    font-size: 2.5rem;
	width: 90%;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 0 auto 25px auto;
    display: inline-block;
}

/* Section Subtitles */
.rustdesk-section h2 {
    font-size: 2rem;
    color: #a83232;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}
.main-description {
	border: 2px solid #a83232;
	border-radius: 10px;
	background-color: #f9f9f9;
	padding: 10px;
	width: 90%;
	margin: 0 auto;
}
/* Paragraphs */
.rustdesk-section p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* Step Instructions */
.rustdesk-section ol {
    font-size: 1.2rem;
    line-height: 1.6;
    list-style: none;
    padding-left: 0;
    margin: 0 auto 30px;
    width: 90%;
    counter-reset: step;
}

.rustdesk-section ol li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    counter-increment: step;
    text-align: center;
}

.rustdesk-section ol li::before {
    content: counter(step) ". ";
    font-weight: bold;
    color: #a83232;
    margin-right: 10px;
}

/* Download Button Grid */
.download-choice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.os-box {
    background-color: #f9f9f9;
    border: 2px solid #a83232;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
    text-align: center;
}

.os-box:hover {
    transform: translateY(-5px);
}

.os-box h3 {
    font-size: 1.5rem;
    color: #a83232;
    margin-bottom: 10px;
}

.os-box p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

.os-box a {
    display: inline-block;
    background-color: #a83232;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.os-box a:hover {
    background-color: #942c2c;
}

.os-box small {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

/* Security Note Box */
.security-box {
    border-left: 5px solid #a83232;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    margin: 30px auto;
    font-size: 1rem;
    color: #444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rustdesk-section {
        padding: 15px;
    }

    .rustdesk-section h1 {
        font-size: 2rem;
        padding: 12px 20px;
    }

    .rustdesk-section h2 {
        font-size: 1.5rem;
    }

    .download-choice {
        grid-template-columns: 1fr;
    }

    .os-box {
        padding: 20px;
    }
}
