<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.contact-form {
    max-width: 600px;
}

.form-title {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

/* ÐŸÐµÑ€ÑˆÐ° Ñ„Ð¾Ñ€Ð¼Ð°: ÐœÑ–Ð½Ñ–Ð¼Ð°Ð»Ñ–ÑÑ‚Ð¸Ñ‡Ð½Ð¸Ð¹ ÑÑ‚Ð¸Ð»ÑŒ */
.input-style-1 {
    background-color: #f1f3f4;
    border: none;
    border-radius: 10px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-style-1:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 143, 255, 0.4);
    border: 2px solid #0090ff;
}

.textarea-style-1 {
    background-color: #f1f3f4;
    border: none;
    border-radius: 10px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    color: #333;
    resize: vertical;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn-style-1 {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 14px 30px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn-style-1:hover {
    background-color: #45a049;
}

/* Ð”Ñ€ÑƒÐ³Ð° Ñ„Ð¾Ñ€Ð¼Ð°: Ð¡Ñ‚Ð¸Ð»ÑŒ "Ñ‚ÐµÑ…Ð½Ð¾" */
.input-style-2 {
    background-color: #2b2b2b;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.input-style-2:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 255, 238, 0.5);
    border: 2px solid #00ffe6;
}

.textarea-style-2 {
    background-color: #2b2b2b;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    resize: vertical;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.submit-btn-style-2 {
    background-color: #ff3b30;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn-style-2:hover {
    background-color: #ff2a1b;
}

.pricing-container {
    text-align: center;
    padding: 50px 20px;
}

.pricing-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ÐšÐ°Ñ€Ñ‚ÐºÐ¸ Ñ‚Ð°Ñ€Ð¸Ñ„Ñ–Ð² */
.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-plan {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00bcd4;
    margin-top: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: normal;
    color: #00bcd4;
}

/* ÐŸÐµÑ€ÐµÐ»Ñ–Ðº Ð¿Ð¾ÑÐ»ÑƒÐ³ */
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: 'âœ”ï¸';
    margin-right: 10px;
    color: #4CAF50;
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° */
.pricing-btn {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-btn:hover {
    background-color: #008c96;
}
</pre></body></html>