/* Уникальные стили для блока */
.mci-info-block {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.mci-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mci-info-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.mci-vessel-registration {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.mci-vessel-title {
    font-size: 24px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 15px;
}

.mci-vessel-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mci-register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mci-register-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .mci-info-title {
        font-size: 28px;
    }

    .mci-info-description {
        font-size: 16px;
    }

    .mci-vessel-title {
        font-size: 20px;
    }

    .mci-vessel-description {
        font-size: 14px;
    }

    .mci-register-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}